Trading 212 MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Trading 212 MCP Servershow my current portfolio holdings"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Trading 212 MCP Server
Secure Trading 212 Public API access for Claude via MCP
Built with:
Project Overview
This project exposes Trading 212 Public API capabilities as MCP tools so Claude Desktop can securely query account, market, order, history, and pie data. It targets users who want natural-language access to their portfolio workflows without building a custom UI. The main value is a modular feature-based TypeScript architecture with structured errors, strict environment handling, and tool-first MCP integration.
Key Features
Claude-Ready MCP Tools - Use Trading 212 operations directly from Claude Desktop through MCP.
Public API-Compatible Auth - Supports Trading 212 Basic auth with API key + API secret.
Complete Pies Coverage - Includes list, fetch by id, create, update, duplicate, and delete pie operations.
Order Workflows Included - Pending orders, order details, place/cancel limit, market, stop, and stop-limit orders.
History + Export Operations - Cursor-based historical orders, dividends, transactions, and CSV export request/list endpoints.
Typed Error Model - Consistent authentication, validation, rate-limit, not-found, and API error handling.
Quick Start Demo
Run locally, then inspect tools using MCP Inspector:
npx @modelcontextprotocol/inspectorFor stdio mode, configure Inspector command as:
bun run src/server.tsTech Stack
Language: TypeScript (strict mode)
Runtime: Bun 1.x (Node.js 18+ compatible)
MCP:
@modelcontextprotocol/sdkValidation/Schema:
zodConfig:
dotenvTesting: Bun test runner (
bun test src)
Installation & Setup
Prerequisites
Bun 1.0+
Node.js 18+
Trading 212 Public API credentials (
TRADING212_API_KEY,TRADING212_API_SECRET)Claude Desktop (for MCP integration)
Setup
Clone the Repository
git clone https://github.com/razeevascx/212mcp.gitNavigate to Project
cd 212mcpInstall Dependencies
bun installConfigure Environment
cp .env.example .envSet Credentials in
.envTRADING212_API_KEY=your_api_key_here TRADING212_API_SECRET=your_api_secret_here ENVIRONMENT=live TRANSPORT=stdio LOG_LEVEL=info DEBUG=falseBuild Project
bun run buildStart Server
bun run start
Verification
You should see
Trading 212 MCP Server runningin terminal output.In Claude Desktop, open MCP tools and confirm Trading 212 tools are listed.
Claude Desktop Configuration
Use this MCP server config:
{
"mcpServers": {
"trading212": {
"command": "bun",
"args": ["run", "src/server.ts"],
"env": {
"TRADING212_API_KEY": "your_api_key_here",
"TRADING212_API_SECRET": "your_api_secret_here"
}
}
}
}MCP Tools
Accounts
fetch_account_cashfetch_account_metadata
Instruments
search_exchangesearch_instrument
Portfolio / Positions
fetch_open_positionssearch_specific_position_by_tickerfetch_open_position_by_ticker
Orders
fetch_all_ordersfetch_orderplace_limit_orderplace_market_orderplace_stop_orderplace_stop_limit_ordercancel_order
History
fetch_historical_order_datafetch_paid_out_dividendsfetch_transaction_listfetch_exports_listrequest_export_csv
Pies
fetch_piesfetch_piecreate_pieupdate_pieduplicate_piedelete_pie
Server Utility
get_server_health
API Usage Notes
Authentication: Trading 212 Public API uses Basic auth (
API_KEY:API_SECRET), handled byBaseClient.Environment Routing:
ENVIRONMENT=demo|livemaps to Trading 212 demo/live base URLs.Pagination: History endpoints use
limit+cursorand returnnextPagePath.Rate Limits: The API is rate-limited;
429is surfaced asRATE_LIMIT_EXCEEDED.
Development
Scripts
bun run build— Compile TypeScriptbun run start— Start MCP serverbun run dev— Watch modebun test src— Run tests insrc
Troubleshooting
Credentials missing: set
TRADING212_API_KEYandTRADING212_API_SECRET.Auth errors: regenerate API credentials and restart server.
Claude cannot connect: verify Bun install, command path, and Claude MCP config.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/razeevascx/212mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server