T212
FreeNot checkedA read-only MCP server for Trading 212 accounts, enabling AI assistants to query balances, positions, orders, dividends, pies, and instruments without trading c
About
A read-only MCP server for Trading 212 accounts, enabling AI assistants to query balances, positions, orders, dividends, pies, and instruments without trading capabilities.
README
A Model Context Protocol server that gives an AI assistant read-only access to a Trading 212 investing account: balances, positions, order and dividend history, pies, and the instrument catalogue.
It cannot trade. No tool places, amends or cancels an order, or changes a pie. The HTTP client has no code path that issues anything but a
GET. See Security.
You: How is my portfolio doing, and which holding is furthest from its pie target?
→ t212_get_account_info reporting currency
→ t212_get_account_cash balance and unrealised P/L
→ t212_list_positions holdings, ranked by value
→ t212_list_pies pie valuations
→ t212_get_pie allocation drift
Requirements
- Node.js 20.11 or newer
- A Trading 212 API key — in the app: Settings → API
Trading 212 issues separate credentials for practice and real-money accounts, and a key from one is rejected by the other. Start with the practice account.
Quick start
npx t212-mcp
It speaks MCP over stdio, so run it from a client rather than directly.
Claude Desktop
claude_desktop_config.json:
{
"mcpServers": {
"trading212": {
"command": "npx",
"args": ["-y", "t212-mcp"],
"env": {
"T212_API_KEY": "your-key",
"T212_ENVIRONMENT": "demo"
}
}
}
}
Claude Code
claude mcp add trading212 \
--env T212_API_KEY=your-key \
--env T212_ENVIRONMENT=demo \
-- npx -y t212-mcp
Any MCP client
Run npx -y t212-mcp with the environment below and connect over stdio.
Configuration
| Variable | Default | Description |
|---|---|---|
T212_API_KEY |
— | Required. API key from the Trading 212 app. |
T212_API_SECRET |
— | Secret, if your key was issued as a key/secret pair. Selects HTTP Basic auth. |
T212_ENVIRONMENT |
demo |
demo (practice money) or live (real money). |
T212_LOG_LEVEL |
info |
debug, info, warn, error, silent. Logs are NDJSON on stderr. |
T212_TIMEOUT_MS |
15000 |
Per-request timeout. |
T212_MAX_RETRIES |
3 |
Retries rate limits, network faults and 5xx. Never 4xx or a schema mismatch. |
T212_CACHE_TTL_MS |
300000 |
Base cache lifetime, scaled per endpoint — see caching. |
T212_ALLOW_EXPORTS |
false |
Exposes the CSV export tools. See Security. |
T212_BASE_URL |
— | Overrides the API host. For testing against a stub. |
The environment defaults to demo deliberately: the failure mode of that
default is reading play money by accident, which is the only acceptable
direction for the mistake to go.
See .env.example.
Tools
| Tool | Returns |
|---|---|
t212_get_account_cash |
Free cash, total value, invested amount, unrealised P/L, blocked cash |
t212_get_account_info |
Account id, reporting currency, which environment is connected |
t212_list_positions |
All open positions with market value; sort by value, profit or ticker |
t212_get_position |
One position by exact ticker |
t212_search_instruments |
Ranked instrument search by name, symbol or ISIN → exact tickers |
t212_list_exchanges |
Exchanges and, on request, their trading schedules |
t212_list_pending_orders |
Orders placed but not yet executed |
t212_list_order_history |
Executed orders, paginated, filterable by ticker |
t212_list_dividends |
Dividends received, paginated |
t212_list_transactions |
Deposits, withdrawals, fees and interest, paginated |
t212_list_pies |
Pies with invested value, current value and result |
t212_get_pie |
One pie's holdings, ranked by drift from target allocation |
t212_list_exports |
CSV export jobs and links — only if T212_ALLOW_EXPORTS |
Also exposed: a t212://connection resource describing the connection (no
credentials, no network call), and a portfolio_review prompt.
Every tool is annotated readOnlyHint: true and destructiveHint: false.
Ticker format
Trading 212 tickers carry a market suffix: AAPL_US_EQ, not AAPL. Ask the
assistant for a company by name — t212_search_instruments resolves it.
Rate limits and caching
Trading 212's limits are strict and per-endpoint; the instrument catalogue allows roughly one call per minute. The server shapes requests with a token bucket per endpoint group and waits for budget rather than being rejected and retrying blind.
Cache lifetimes are assigned by what the data is, not uniformly:
| Data | Lifetime |
|---|---|
| Instruments, exchanges | 12× base TTL |
| History, dividends | 1× base TTL |
| Pies | 0.2× base TTL |
| Cash, positions | 0.1× base TTL |
| Pending orders, exports | Never cached |
Stale reference data is cosmetic; a stale balance quoted as current is a wrong answer. Concurrent identical requests share one call.
Security
Read SECURITY.md for the full threat model. In short:
- Read-only by construction. The HTTP client exposes only
getand has no path that can issue another method. Order placement, cancellation and pie mutation exist in the Trading 212 API and are deliberately absent here, so a prompt injection reaching a tool call cannot move money. - Credentials stay in the process. Read from the environment, sent only to the configured Trading 212 host over TLS, never written to disk, never in a tool result, and scrubbed from logs and error messages by key name and by literal value.
- Your data goes to your model provider. Anything a tool returns — balances, positions, transaction history — is sent to whichever model your client talks to. That is how MCP works, but decide knowingly before pointing this at a live account.
- CSV exports are opt-in. Export download links grant access to a full
account statement without further authentication, so the tools are hidden
entirely unless
T212_ALLOW_EXPORTSis set.
Create your API key with the narrowest scopes you need. This server never uses order-placement scopes.
Development
npm ci
npm run check # format, lint, typecheck, test — what CI runs
npm run dev # run from source with reload
See CONTRIBUTING.md.
Docker
docker build -t t212-mcp .
docker run --rm -i -e T212_API_KEY=your-key t212-mcp
-i is required: the server talks over stdin and stdout.
Disclaimer
Not affiliated with or endorsed by Trading 212. The Trading 212 API is in beta and may change. This software is provided as-is under the MIT licence; nothing it returns is financial advice, and you are responsible for verifying any figure before acting on it.
Licence
Installing T212
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/guilyx/t212-mcpFAQ
Is T212 MCP free?
Yes, T212 MCP is free — one-click install via Unyly at no cost.
Does T212 need an API key?
No, T212 runs without API keys or environment variables.
Is T212 hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install T212 in Claude Desktop, Claude Code or Cursor?
Open T212 on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare T212 with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
