drio
Open app

Up Bank MCP Server

Source

MCP (Model Context Protocol) server implementation for Up Bank's API

Catalog onlyCatalog onlySTDIO

Overview

Up Bank MCP Server is an implementation of the Model Context Protocol (MCP) server for Up Bank's API, enabling AI agents to interact with Up Bank accounts.

To use the Up Bank MCP Server, clone the repository, set up a virtual environment, install the required dependencies, and configure your Up Bank API token in a .env file.

  • Account balance checking - Transaction history viewing - Secure API token handling - MCP-compliant server implementation
  1. Integrating AI agents for automated banking tasks.
  2. Building applications that require secure access to Up Bank account information.
  3. Developing financial tools that utilize transaction history data.

Add to your AI client

Use these steps to connect Up Bank MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "up-bank-mcp-stuliston": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-up-bank-mcp-stuliston"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "up-bank-mcp-stuliston": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-up-bank-mcp-stuliston"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "up-bank-mcp-stuliston": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-up-bank-mcp-stuliston"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "up-bank-mcp-stuliston": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-up-bank-mcp-stuliston"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "up-bank-mcp-stuliston": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-up-bank-mcp-stuliston"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "up-bank-mcp-stuliston": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-up-bank-mcp-stuliston"
      ]
    }
  }
}

FAQ

What programming language is used for Up Bank MCP Server?

The server is implemented in Python 3.10 and above.

Is the Up Bank MCP Server secure?

Yes! It follows best practices for API security, including storing API tokens in environment variables.

What is the license for Up Bank MCP Server?

The project is licensed under the MIT License.