monobank-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
monobank-mcp by Aler1x | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
monobank-mcp · Summary
Node.js/TypeScript MCP server for Monobank that exposes personal accounts, statements, and public exchange rates as tools.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
monobank-mcp · Use cases
- Financial assistants that can query current account balance and transaction history
- Currency conversion applications that use Monobank's public exchange rates
- Personal finance tracking tools that integrate Monobank data via MCP
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
monobank-mcp · Install
Installation
- **Using the published npm package:**
{
"mcpServers": {
"monobank-mcp": {
"command": "npx",
"args": ["-y", "@alerix/monobank-mcp"],
"env": {
"MONOBANK_API_TOKEN": "your_token_here"
}
}
}
}Set MONOBANK_API_TOKEN only if you use get_client_info or get_statement.
- **For development:**
git clone https://github.com/aler1x/monobank-mcp.git
cd monobank-mcp
npm install
MONOBANK_API_TOKEN=your_token_here npm run devmemory · 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"]
}
}
}