mcp-untappd-server-dotnet vs memory
Side-by-side comparison to help you pick between these two MCP servers.
mcp-untappd-server-dotnet by jtucker | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30d uses | — | — |
| Score | 29 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsOther | Knowledge GraphAI / 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.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
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
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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"
]
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}