mcp-streamable-http vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-streamable-http by invariantlabs-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 129 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具沟通协作 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 12 个月前 | 本月 |
mcp-streamable-http · 概述
Python 和 TypeScript MCP 服务器示例,实现 Streamable HTTP 协议进行跨语言通信。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-streamable-http · 使用场景
- 构建跨语言 MCP 服务器实现
- 创建基于 HTTP 的 MCP 传输层
- 开发天气信息 MCP 服务
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-streamable-http · 安装
安装
Python 示例
git clone https://github.com/invariantlabs-ai/mcp-streamable-http.git
cd python-example/server
pip install .
python weather.pyTypeScript 示例
cd typescript-example/server
npm install && npm run build
node build/index.jsClaude Desktop 集成
添加到 Claude Desktop config.json:
"mcpServers": {
"streamable-http": {
"command": "node",
"args": ["/path/to/build/index.js"],
"env": {
"PORT": "8123"
}
}
}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