One URL. 86 tools.
Point any Model Context Protocol client at a single endpoint and it gains every FoxD capability — discovery and safety analysis across six chains, trading, wallets, automated orders, copy trading and multi-launchpad token deployment. Nothing to install, nothing to keep updated.
The endpoint
https://foxd.xyz/api/mcpStreamable HTTP transport. Every tool needs Authorization: Bearer fxk_live_…; the tool list itself is readable without one, so a client can show you what is there before you connect it.
The server is stateless: no session ids, no long-lived stream to keep alive. Every request carries its own credential, which is what lets it sit behind a load balancer and survive a redeploy without dropping your client.
Works with
Anything that speaks MCP works — this list is where we have verified it end to end, not a whitelist.
Connect it
- 1Copy the endpointhttps://foxd.xyz/api/mcp — that is the whole integration.
- 2Add it to your clientMost clients accept a remote HTTP server directly. Paste the block below into your MCP config; existing servers are unaffected.
{ "mcpServers": { "foxd": { "type": "http", "url": "https://foxd.xyz/api/mcp", "headers": { "Authorization": "Bearer fxk_live_…" } } } } - 3Add a key for the write toolsSkip this and you still get every market-data tool. Add one and you unlock wallets, trading, orders and launching. Create one in Profile → Settings → API keys.
- 4Ask it something“Is 0x532f… on Base safe to buy?” will pull the provider verdict, run an on-chain buy/sell simulation, check holder concentration and explain the score.
What it can do
Before you point an agent at your funds
- A key binds to one wallet. A leaked research key can never reach the rest of your account.
- Trading keys carry a rolling 24-hour USD spend cap, checked before anything is signed.
- Scopes are granular. A read-only key can quote a trade but never fill one.
- Revoking a key takes effect immediately — and revoking the key that created a webhook stops its deliveries too.
- The server never sends your private keys anywhere. wallet.export exists so you can leave, and says so plainly.
- Everything is free during early access. Quotas are real but generous.
One-command install
npx foxd-mcp --claude # or --cursor, --codex, --opencode, --vscodeGet an API key
Public market data needs no key. Everything account-, wallet- or trade-related does. Keys are free, scoped, and revocable in one click.