mcp-untappd-server-dotnet vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
mcp-untappd-server-dotnet by jtucker | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30d uses | — | — |
| Score | 29 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsOther | Web ScrapingAI / LLM ToolsProductivity |
| 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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"
]
}
}
}fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}