Skip to main content
Glama
Fyko

Mercury MCP Server

by Fyko

Mercury MCP Server

Deploy on Railway

MCP Server for Mercury Banking API. Supports both stdio (for Docker) and HTTP transports.

Usage

Claude Desktop and Cursor

{
  "mcpServers": {
    "mercury": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "MERCURY_API_KEY",
        "ghcr.io/fyko/mercury-mcp-server"
      ],
      "env": {
        "MERCURY_API_KEY": "replace_me"
      }
    }
  }
}

Server Mode

Run the server normally (without -i flag or with a tty):

docker run -e MERCURY_API_KEY=your-key -e MCP_API_KEY=your-auth-key -p 9236:9236 ghcr.io/fyko/mercury-mcp-server

or locally:

# create .env, bun autoloads it
MERCURY_API_KEY=your-key
MCP_API_KEY=your-auth-key
PORT=9236
bun start

The server auto-detects which mode to use based on whether stdin is a tty.

To use the server in Cursor:

{
  "mcpServers": {
    "mercury": {
      "url": "https://whatever.example.com/mcp",
      "headers": {
        "Authorization": "Bearer MCP_API_KEY"
      }
    }
  }
}

Related MCP server: mercury-invoicing-mcp

Tools

  • list-accounts - list all mercury accounts

  • get-account-transactions - get transactions for an account

Building

docker build -t mercury-mcp-server .

Development

bun install
bun run dev # hot reloading

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Simple MCP server that interfaces with the Mercury API, allowing you to talk to your Mercury banking data from any MCP client like Cursor or Claude Desktop.
    4
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    MCP server for accessing and managing Banktivity personal finance data, enabling account, transaction, and budget operations through natural language.
    3
    MIT