swift-context-protocol vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
swift-context-protocol by 1amageek | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 11 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 33 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Swift | TypeScript |
| 最近提交 | 15 个月前 | 本月 |
swift-context-protocol · 概述
Swift实现的MCP服务器,使用分布式actor为AI上下文提供类型安全的工具、资源和提示。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
swift-context-protocol · 使用场景
- 在Swift生态中创建分布式AI工具
- 为AI应用构建类型安全的MCP服务器
- 使用Swift actor实现资源管理系统
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
swift-context-protocol · 安装
要安装swift-context-protocol,请将其添加到您的Package.swift依赖项中:
dependencies: [
.package(url: "https://github.com/1amageek/swift-context-protocol.git", from: "1.0.0")
]然后将其添加到您的目标依赖项中:
targets: [
.executableTarget(
name: "YourApp",
dependencies: [
"swift-context-protocol"
]
)
]对于Claude Desktop集成,通常会将服务器添加到您的configuration.json中,但这个Swift服务器可能需要额外的Swift环境设置。
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