autonomousintelligence-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AI_AGENT_KEY | No | API key for Autonomous Intelligence. Required only for swap building and submission (build_swap, submit_swap); optional for read-only tools. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_quoteA | Get a swap quote (route, expected out, 2% fee disclosed) for inputMint→outputMint of amount in base units. |
| check_token_safetyC | Rug-gate a token: honeypot, mint/freeze authority, liquidity lock, holder concentration. |
| find_gemsC | Rug-gated new/trending tokens. tab: new | trending | graduated. |
| get_token_infoB | Live price, liquidity and market cap for a mint. |
| list_tradeable_tokensD | Every token swappable on the DEX. |
| build_swapA | Build an UNSIGNED swap transaction (2% fee baked in) + a build_id. Requires an API key. Sign it locally with your own wallet, then call submit_swap with the same build_id. Your key never leaves your environment. |
| submit_swapA | Broadcast an already-signed swap transaction with its build_id. Requires an API key. Returns the signature and confirmation status. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
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.