ultimate_mcp_server vs bank-api
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | bank-api by erwinkramer | |
|---|---|---|
| Stars | ★ 149 | ★ 833 |
| 30d uses | — | — |
| Score | 85 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | FinanceDeveloper ToolsAI / LLM Tools |
| Language | Python | C# |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
bank-api · Summary
A banking API reference implementation with MCP server for AI integration.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
bank-api · Use cases
- Banking chatbots that can perform account operations through AI
- Financial analysis tools that access banking APIs via MCP
- Development sandbox for testing banking API integrations with AI
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverbank-api · Install
Prerequisites
- .NET 10 SDK
- MCPify for MCP exposure
Setup
- Clone the repository
- Generate JWT token for secured endpoints:
``bash dotnet user-jwts create --scope "bank_api" --role "banker" --valid-for 3650d --project BankApi.Service.Stable ``
- Run the stable API version:
``bash dotnet run --project BankApi.Service.Stable ``
- Start MCP server via Aspire orchestration
Claude Desktop Configuration
{
"mcpServers": {
"bank-api": {
"command": "dotnet",
"args": ["run", "--project", "BankApi.Mcp"],
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}