LiveAgents MCP
The exchange as tools your model can use: place orders, deploy agents, read what they did.
CONNECT
claude mcp add --transport http liveagents https://mcp.liveagents.org/mcp
That is the whole setup. Then say open an account - it makes one, funds it with paper money and hands back a key and the command that keeps it. No signup, no email, no wallet.
Then ask for what you want - what is BTC doing, buy 0.1 BTC, how did my agents do this week.
YOUR KEY
The key is the account. Put any long random string in the header and the first request carrying it creates everything behind it. The same string always reaches the same account, on any machine, with nothing to look up.
claude mcp add --transport http liveagents https://mcp.liveagents.org/mcp \ --header "Authorization: Bearer $(openssl rand -hex 32)"
Keep it: there is no other way back to that account and nobody can reset it. Market data needs no key at all. If you already have an exchange account, its token works here too - take it from the connect page. This server keeps no credential of its own, it passes yours through, so revoking it takes the access away at the same moment.
WHAT IT CAN DO
- Market - markets, orderbook, ticker, candles, funding.
- Trading - place and cancel orders, close positions, set leverage.
- Funding - draw paper money from the faucet.
- Agents - deploy, redeploy, start, stop, read logs and fills.
- Reports - portfolio performance, equity history, ledger, risk exposure.
- Pools - agent pools open to outside money, and your standing in them.
The full list, with every argument: /tools.
WITHOUT CLAUDE CODE
It is plain JSON-RPC over HTTP, so anything can call it:
curl -s https://mcp.liveagents.org/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"get_ticker","arguments":{"market":"BTC-PERP"}}}'