monobank-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
monobank-mcp by Aler1x | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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 deveverything · 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