Autonomous Intelligence
◆ For AI agents & their builders

Give your AI agent the power to trade crypto — non-custodially

Updated 6 August 2026 · Autonomous Intelligence

One connection lets any AI agent — Claude, Cursor, ChatGPT, or your own — discover tokens, rug-check them, get a best-route quote and execute a swap, without ever holding a private key. Connect over MCP in one line, or call the REST API. It is strictly non-custodial: the agent signs every swap locally with the user's own wallet, and keys never leave your environment.

Get a free key → Full setup guide

The problem it solves

Until now, letting an AI agent touch crypto meant one of two bad options: hand a provider custody of the funds (risky), or wire up five different APIs and a signing flow yourself (slow, and easy to get wrong). And nothing rug-checked the token before the agent traded it. Autonomous Intelligence collapses all of that into a single, non-custodial, rug-gated action layer any agent can connect to.

What your agent gets

Seven tools, exposed over the Model Context Protocol (MCP) and a plain REST API:

Discovery tools need no key. Only build_swap and submit_swap (marked *) need a free, self-serve key — get one in one click at /keys.

Why non-custodial is the whole point

The swap flow is deliberately split so the platform can never move your funds:

get_quote → build_swap (returns an UNSIGNED tx + build_id) → [your agent signs locally with the user's wallet] → submit_swap (broadcast)

build_swap only ever returns an unsigned transaction; submit_swap only ever receives one your agent already signed. The signing key stays in your environment the entire time. That is what "non-custodial" actually means — not a marketing label, but a flow the platform physically cannot bypass.

Connect in one line

Claude Code:

claude mcp add autonomous-intelligence -- npx -y autonomousintelligence-mcp

Claude Desktop · Cursor · Windsurf · VS Code — paste into your MCP config:

{ "mcpServers": { "autonomous-intelligence": { "command": "npx", "args": ["-y", "autonomousintelligence-mcp"], "env": { "AI_AGENT_KEY": "YOUR_KEY" } } } }

ChatGPT / any HTTP client — add the hosted server: https://autonomousintelligence.io/mcp. Not using MCP? Call the REST rail or drop in a zero-config SDK (JS/Python + LangChain, Vercel AI SDK, LlamaIndex, CrewAI, Eliza). Full step-by-step: the setup guide.

How it compares

ApproachCustodyRug-checkSetup
Autonomous Intelligence (MCP)Non-custodial — agent signs locally, keys never leaveBuilt in (honeypot, authorities, LP lock, concentration)One line / hosted URL
Custodial agent walletsProvider holds / isolates the keysVaries; often noneAccount + funding
Raw DEX / aggregator APIsYou build the signing flow yourselfNone — you add itCustom code per API

FAQ

Can an AI agent swap crypto without holding my private key?

Yes. build_swap returns an unsigned transaction and a build_id; your agent signs it locally with the user's own wallet, then submit_swap broadcasts it. The key never leaves your environment and the platform can never move your funds. Discovery and quotes need no key at all.

What is an MCP server for crypto swaps?

An MCP (Model Context Protocol) server exposes tools any MCP client — Claude, Cursor, Windsurf, VS Code, ChatGPT — can call. This one gives the agent tools to discover tokens, check safety, quote, build and submit swaps. Install it as npx -y autonomousintelligence-mcp or use the hosted endpoint /mcp.

How do I let my AI agent trade crypto safely?

Add the MCP server in one line (or the hosted URL in ChatGPT), let it rug-check tokens with check_token_safety, and keep signing non-custodial. Get a free self-serve key at /keys for the execution tools.

Is it safe from rug pulls and scam tokens?

check_token_safety flags honeypots, live mint/freeze authorities, unlocked liquidity and holder concentration, so the agent can refuse unsafe tokens automatically — before it ever builds a swap.

Which blockchains can AI agents swap on?

The agent rail runs non-custodial swaps on Solana today (best-route via a DEX aggregator), plus token-safety and discovery. It is part of the multi-chain OMNIDEX platform (Solana + 30+ EVM/L2 networks and TON, with a built-in bridge).

Get a free key → Read the setup guide