mcp-untappd-server-dotnet vs memory
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-untappd-server-dotnet by jtucker | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 29 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具其它 | 知识库 / RAGAI / LLM 工具效率工具 |
| 实现语言 | F# | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
mcp-untappd-server-dotnet · 概述
基于Azure Functions和F#的Untappd MCP服务器,用于啤酒数据集成。
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
mcp-untappd-server-dotnet · 使用场景
- 从Untappd检索啤酒信息和评论
- 跟踪个人啤酒签到和历史
- 在AI助手中创建啤酒发现工作流
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
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"
]
}
}
}memory · 安装
安装
Claude Desktop
添加到你的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
使用一键安装按钮或在 .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"]
}
}
}