autonomousintelligence-mcp
# autonomousintelligence-mcp
MCP server for **Autonomous Intelligence** — the non-custodial, rug-gated crypto action layer for AI agents. Give any MCP client (Claude, Cursor, ChatGPT, …) the power to discover, safety-check, quote and execute multi-chain token swaps.
- **Non-custodial:** `build_swap` returns an *unsigned* transaction; your agent signs it locally with the user's own wallet; `submit_swap` only ever receives an already-signed tx. **Keys never leave your environment.**
- **Rug-gated:** `check_token_safety` flags honeypots, mint/freeze authority, liquidity locks, holder concentration.
- **Keyless discovery:** quotes, safety, gems, token info, tradeable list — no key. A self-serve key is only needed for execution.
## Install
```bash
claude mcp add autonomous-intelligence -e AI_AGENT_KEY=YOUR_KEY -- npx -y autonomousintelligence-mcp
```
Or in `~/.cursor/mcp.json` (Cursor / VS Code / Windsurf):
```json
{ "mcpServers": { "autonomous-intelligence": {
"command": "npx", "args": ["-y", "autonomousintelligence-mcp"],
"env": { "AI_AGENT_KEY": "YOUR_KEY" } } } }
```
Hosted, no install: `https://autonomousintelligence.io/mcp`
## Tools
`get_quote` · `check_token_safety` · `find_gems` · `get_token_info` · `list_tradeable_tokens` · `build_swap`\* · `submit_swap`\* (\* need a key)
## Get a key (self-serve)
```bash
curl -s -X POST https://autonomousintelligence.io/v1/agent/register \
-H 'content-type: application/json' -d '{"agent_name":"my-agent"}'
# -> { "ok": true, "key": "ai_live_..." }
```
`AI_AGENT_KEY` is only used for `build_swap` / `submit_swap`. A 2% platform fee is included in every built swap.
## Non-custodial swap flow
```
get_quote -> build_swap (unsigned tx + build_id) -> [sign locally with the user's wallet] -> submit_swap
```
Docs: https://autonomousintelligence.io/docs#agents · Drop-in SDKs (JS/Python) + framework adapters: https://autonomousintelligence.io/sdk/
MIT © Autonomous Intelligence
TDQS
Scored across 7 tools
Each tool targets a distinct concern: quoting, safety checks, discovery, token info, listings, and two-step swap transaction handling. Even the overlapping price-related tools (get_quote vs get_token_info) are clearly differentiated by their context: swap quotes versus general token metrics.
All tool names follow a consistent verb_noun pattern with lowercase and underscores: get_quote, check_token_safety, find_gems, get_token_info, list_tradeable_tokens, build_swap, submit_swap. There are no mixed conventions or irregular verbs, making the API easy to predict.
With seven tools, the server is well-scoped for a DEX integration. Each tool serves a clear purpose in the workflow—from discovery and safety to quote and transaction execution—without unnecessary bloat or redundancy.
The tool surface covers the core lifecycle for token swapping: discovering tokens, checking safety, fetching token data, quoting, building, and submitting swaps. No major operation is missing; the two-step build/submit flow is logically complete for a secure MCP library.