MCP Catalogs
首页

context-space vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

context-space
by context-space
everything
by modelcontextprotocol
Stars★ 809★ 85,748
30天用量
综合分4977
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言GoTypeScript
最近提交7 个月前本月

context-space · 概述

Context Space 提供统一的 MCP 工具和经过验证的集成,为 AI 代理提供企业级安全和 5 分钟设置。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

context-space · 使用场景

  • 使 AI 代理能够安全地与 GitHub 仓库、问题和拉取请求交互
  • 允许 AI 助手访问和管理 Slack 团队对话和频道
  • 将 AI 系统连接到 Notion 文档和项目管理内容
  • 为 AI 代理提供实时网页搜索功能

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

context-space · 安装

安装

Claude Desktop 集成

通过 MCP 将 Context Space 添加到 Claude Desktop:

{
  "mcpServers": {
    "context-space": {
      "command": "npx",
      "args": ["@contextspace/mcp-server"],
      "env": {
        "CONTEXT_SPACE_API_KEY": "your_api_key_here"
      }
    }
  }
}

CLI 集成

对于 Claude Code:

claude mcp add "context-space" https://api.context.space/api/mcp --header "Authorization: Bearer YOUR_API_KEY"

Cursor IDE 集成

使用深度链接:cursor://add-to-context-space

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。