MCP server for Trading Simulator operations
Most developer tooling work still happens through a UI a human drives. Trading Simulator MCP MCP server moves it into the conversation instead. MCP server for Trading Simulator operations.
An MCP (Model Context Protocol) server for interacting with the Trading Simulator API. This server enables AI models like Claude to check balances, check prices, and execute trades via an MCP-compatible interface.
The server publishes 10 tools. What each one is for:
get_balances — Get token balances for your teamget_portfolio — Get portfolio information for your teamget_trades — Get trade history for your teamget_price — Get the current price for a tokenget_token_info — Get detailed information about a tokenget_price_history — Get historical price data for a tokenexecute_trade — Execute a trade between two tokensget_quote — Get a quote for a potential tradeget_competition_status — Get the status of the current competitionget_leaderboard — Get the competition leaderboardInstallation goes through your MCP client rather than a global install: point it at github on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Configuration is passed through the environment: TRADING_SIM_API_KEY, TRADING_SIM_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Trading Simulator MCP's toolset — get_balances, get_portfolio, get_trades and 7 more — is a fair guide to whether it matches your workflow. It is maintained by recallnet; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Trading Simulator MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| get_balances | Get token balances for your team |
| get_portfolio | Get portfolio information for your team |
| get_trades | Get trade history for your team |
| get_price | Get the current price for a token |
| get_token_info | Get detailed information about a token |
| get_price_history | Get historical price data for a token |
| execute_trade | Execute a trade between two tokens |
| get_quote | Get a quote for a potential trade |
| get_competition_status | Get the status of the current competition |
| get_leaderboard | Get the competition leaderboard |
{
"mcpServers": {
"trading-simulator-mcp": {
"command": "npx",
"args": [
"-y",
"github:recallnet/trading-simulator-mcp"
],
"env": {
"TRADING_SIM_API_KEY": "your-api-key",
"TRADING_SIM_API_URL": "api-url"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| TRADING_SIM_API_KEY | Credential the server authenticates with. | Yes |
| TRADING_SIM_API_URL | Endpoint or connection string the server talks to. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.