mcp-untappd-server-dotnet vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-untappd-server-dotnet by jtucker | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 29 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | F# | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
mcp-untappd-server-dotnet · 概述
基于Azure Functions和F#的Untappd MCP服务器,用于啤酒数据集成。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-untappd-server-dotnet · 使用场景
- 从Untappd检索啤酒信息和评论
- 跟踪个人啤酒签到和历史
- 在AI助手中创建啤酒发现工作流
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-untappd-server-dotnet · 安装
安装
先决条件:
- dotnet 9.0
- Docker Desktop
配置:
- 使用Azure连接字符串和Untappd API凭据设置local.settings.json:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "<CONNECTION_STRING>",
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated",
"Untappd:ClientId": "",
"Untappd:ClientSecret": ""
}
}Claude Desktop设置:
由于Claude Desktop目前不支持SSE配置,您需要添加中间组件:
编辑您的claude_desktop_config.json:
{
"mcpServers": {
"untappddotnet": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:7071/runtime/webhooks/mcp/sse"
]
}
}
}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