MCP Catalogs
Home

bank-api vs everything

Side-by-side comparison to help you pick between these two MCP servers.

bank-api
by erwinkramer
everything
by modelcontextprotocol
Stars★ 833★ 85,748
30d uses
Score5277
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last committhis monththis month

bank-api · Summary

A banking API reference implementation with MCP server for AI integration.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

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

bank-api · Install

Prerequisites

  • .NET 10 SDK
  • MCPify for MCP exposure

Setup

  1. Clone the repository
  2. Generate JWT token for secured endpoints:

``bash dotnet user-jwts create --scope "bank_api" --role "banker" --valid-for 3650d --project BankApi.Service.Stable ``

  1. Run the stable API version:

``bash dotnet run --project BankApi.Service.Stable ``

  1. Start MCP server via Aspire orchestration

Claude Desktop Configuration

{
  "mcpServers": {
    "bank-api": {
      "command": "dotnet",
      "args": ["run", "--project", "BankApi.Mcp"],
      "env": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    }
  }
}

everything · 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
Comparison generated from public README + GitHub signals. Last updated automatically.