trading212-mcp
This server integrates the Trading 212 public API into MCP, enabling account monitoring, portfolio management, market data access, and opt-in trading for equities and ETFs on Invest and Stocks ISA accounts.
Account & Portfolio
Retrieve account summaries: cash breakdown (available, reserved, in pies), investments, realized/unrealized P&L, and total value
List all open positions with quantity, average/current price, unrealized P&L, and FX impact
Fetch details for a single position by ticker
Orders
List all pending equity orders (market, limit, stop, stop-limit) with status, quantities, and prices
Fetch details of a single pending order by ID
Browse executed (historical) orders with fill details and wallet impact (cursor-paginated, newest first)
Pies (Automated Portfolios)
List all pies with money-in, goal progress, performance, and dividend details
Fetch full pie definitions including per-instrument breakdown, weights, and issues (e.g. delisted instruments)
Market Data
List exchanges with working schedules and session open/close times
Search ~17,000 tradable instruments by ticker/name and filter by type (STOCK, ETF, WARRANT, etc.)
History & Reporting
List paid-out dividends with amounts and gross per share (cursor-paginated)
List cash transactions: deposits, withdrawals, fees, and transfers (cursor-paginated)
Check status of CSV export reports and retrieve download links
Write/Trading Tools (opt-in via T212_MCP_ENABLE_TRADING=true)
Place market, limit, stop, and stop-limit orders (positive quantity = BUY, negative = SELL)
Cancel pending equity orders by ID
Create, update, delete, and duplicate investment pies
Request asynchronous CSV export reports of account history
Safety & Configuration
Defaults to demo (paper trading) environment; set
T212_ENV=livefor live tradingTrading tools are hidden unless explicitly enabled via environment flag
Handles HTTP 429 rate limits with automatic retries
HTTP transport binds to
127.0.0.1by default; no built-in authentication on HTTP endpoint (use a reverse proxy)Requires a Trading 212 API key for authentication
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., "@trading212-mcpshow my portfolio positions"
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.
trading212-mcp
MCP server for the Trading 212 public API — equities and ETF investing on Invest and Stocks ISA accounts. It exposes the account, portfolio, order, pie, and history endpoints as MCP tools, defaults to the demo (paper trading) environment, and keeps trading tools hidden unless explicitly enabled.
Features
Read coverage of the whole public API: account summary, instrument universe, exchange schedules, open positions, pending orders, pies, historical orders, dividends, cash transactions, and CSV exports.
Trading tools (order placement/cancellation, pie management, export requests) are opt-in via an environment flag and stay invisible to the MCP client otherwise.
Demo environment by default; live is an explicit choice.
Responses are trimmed to the fields a trader acts on, and list tools accept a
limitparameter to keep payloads small.One automatic retry on HTTP 429, honouring the
Retry-Afterheader capped at 30 seconds (Trading 212 rate limits are strict and per-endpoint).stdio transport by default, HTTP (
/mcp) on request.
Related MCP server: tastytrade-mcp
Tools
Read tools (always registered):
Tool | Description |
| Account summary: cash breakdown, investments, and overall result |
| Exchanges with working schedules trimmed to session open/close events |
| Search the tradable instrument universe by ticker/name substring and type |
| List all open positions with quantity, prices, and unrealized P/L |
| Fetch a single open position by its Trading 212 ticker |
| List all pending equity orders |
| Fetch one pending equity order by its id |
| List all pies with money-in, progress, and performance |
| Fetch one pie's full definition and per-instrument breakdown |
| List executed equity orders, newest first (cursor-paginated) |
| List paid-out dividends (cursor-paginated) |
| List cash transactions: deposits, withdrawals, fees, transfers (cursor-paginated) |
| List requested CSV export reports and their processing status |
Write tools (registered only when T212_MCP_ENABLE_TRADING is truthy):
Tool | Description |
| Place a market order (positive quantity = BUY, negative = SELL) |
| Place a limit order with a limit price and DAY/GTC validity |
| Place a stop order that triggers a market order at the stop price |
| Place a stop-limit order (limit order placed once the stop triggers) |
| Cancel a pending equity order by its id |
| Create a new pie from a ticker-to-weight allocation map |
| Replace an existing pie's definition (name and full allocation) |
| Delete a pie by ID (irreversible) |
| Duplicate an existing pie under a new name |
| Request an asynchronous CSV export report of account history |
Configuration
All configuration is via environment variables — never commit credentials.
Variable | Default | Purpose |
| — (required) | API key (Basic auth username), generated in the Trading 212 app |
| — (required) | API secret (Basic auth password) |
|
| Target environment: |
| off | Set to |
Getting started
Run straight from the repository with uv:
uvx --from git+https://github.com/florinel-chis/trading212-mcp trading212-mcpThe server speaks stdio by default; add --transport http --port 8000 to
serve MCP over HTTP at /mcp instead. HTTP binds 127.0.0.1 by default,
and a non-loopback --host is refused unless --allow-remote is also
passed — read the Safety section before using that flag.
MCP client configuration
Add the server to your MCP client's configuration (stdio, via uvx):
{
"mcpServers": {
"trading212": {
"command": "uvx",
"args": ["--from", "git+https://github.com/florinel-chis/trading212-mcp", "trading212-mcp"],
"env": {
"T212_API_KEY": "your-api-key",
"T212_API_SECRET": "your-api-secret"
}
}
}
}Or run the Docker image (build it first, see below):
{
"mcpServers": {
"trading212": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "T212_API_KEY",
"-e", "T212_API_SECRET",
"trading212-mcp"
],
"env": {
"T212_API_KEY": "your-api-key",
"T212_API_SECRET": "your-api-secret"
}
}
}
}Docker
docker build -t trading212-mcp .
# stdio (what MCP clients spawn)
docker run -i --rm -e T212_API_KEY -e T212_API_SECRET trading212-mcp
# HTTP at http://127.0.0.1:8000/mcp — publish the port on loopback only:
# the MCP endpoint is unauthenticated (see Safety)
docker run --rm -p 127.0.0.1:8000:8000 -e T212_API_KEY -e T212_API_SECRET \
trading212-mcp --transport http --host 0.0.0.0 --port 8000 --allow-remote(--host 0.0.0.0 binds inside the container so the port mapping works —
which is why --allow-remote is needed; the 127.0.0.1: prefix on -p
keeps the endpoint reachable from this machine only.)
Safety
The HTTP transport has no authentication: anyone who can reach the
/mcpendpoint can call every registered tool — read the account, and place/cancel orders or delete pies ifT212_MCP_ENABLE_TRADINGis set — all signed with your API key. Keep it bound to127.0.0.1(the CLI default; with Docker, publish as-p 127.0.0.1:8000:8000) or put it behind an authenticating reverse proxy. Never expose it directly on a public or shared network.The server defaults to the demo (paper trading) environment; set
T212_ENV=livedeliberately.Trading tools are not registered — invisible to the MCP client — unless
T212_MCP_ENABLE_TRADINGis truthy.The Trading 212 API is v0 beta: order endpoints are not idempotent (resending a request may create duplicate orders), and rate limits are strict and per-endpoint (each tool documents its limit).
Use at your own risk. Nothing here is investment advice.
Development
uv sync
uv run pytest -q
uv run ruff check .License
MIT
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/florinel-chis/trading212-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server