context-space vs everything
Side-by-side comparison to help you pick between these two MCP servers.
context-space by context-space | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 809 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 7 mo ago | this month |
context-space · Summary
Context Space provides unified MCP tools and verified integrations for AI agents with enterprise-grade security and a 5-minute setup.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
context-space · Use cases
- Enabling AI agents to securely interact with GitHub repositories, issues, and pull requests
- Allowing AI assistants to access and manage Slack team conversations and channels
- Connecting AI systems to Notion documentation and project management content
- Providing real-time web search capabilities to AI agents
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
context-space · Install
Installation
Claude Desktop Integration
Add Context Space to Claude Desktop via MCP:
{
"mcpServers": {
"context-space": {
"command": "npx",
"args": ["@contextspace/mcp-server"],
"env": {
"CONTEXT_SPACE_API_KEY": "your_api_key_here"
}
}
}
}CLI Integration
For Claude Code:
claude mcp add "context-space" https://api.context.space/api/mcp --header "Authorization: Bearer YOUR_API_KEY"Cursor IDE Integration
Use the deep link: cursor://add-to-context-space
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything