mcp-untappd-server-dotnet vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-untappd-server-dotnet by jtucker | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30d uses | — | — |
| Score | 29 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | F# | TypeScript |
| Last commit | 13 mo ago | this month |
mcp-untappd-server-dotnet · Summary
Untappd MCP Server using Azure Functions in F# for beer data integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-untappd-server-dotnet · Use cases
- Retrieving beer information and reviews from Untappd
- Tracking personal beer check-ins and history
- Creating beer discovery workflows in AI assistants
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
mcp-untappd-server-dotnet · Install
Installation
Prerequisites:
- dotnet 9.0
- Docker Desktop
Configuration:
- Set up local.settings.json with your Azure connection string and Untappd API credentials:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "<CONNECTION_STRING>",
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated",
"Untappd:ClientId": "",
"Untappd:ClientSecret": ""
}
}Claude Desktop Setup:
Since Claude Desktop doesn't currently support SSE configuration, you need to include a middle man component:
Edit your claude_desktop_config.json:
{
"mcpServers": {
"untappddotnet": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:7071/runtime/webhooks/mcp/sse"
]
}
}
}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