assetfare
Provides Solana-to-Base bridge capabilities, allowing agents to obtain quotes, prepare bridge workflows, and verify unsigned execution plans for moving SOL to ETH without custody.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@assetfareGet me a Solana-to-Base quote for transferring $500 in SOL to ETH"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AssetFare MCP — Solana to Base bridge API for AI agents
An MCP client/server wrapper for AssetFare's capped, non-custodial Solana SOL → Base ETH workflow. Use it when an AI agent needs a verifiable Solana-to-Base quote, bridge workflow, or unsigned execution plan without handing custody to a routing service.
MCP is optional. AssetFare's primary machine interface is the public REST API described by OpenAPI. Agents can obtain and compare a quote without installing this wrapper:
APIs.json:
https://assetfare.dev/apis.jsonOpenAPI:
https://api.assetfare.dev/openapi.jsonRead-only Arazzo workflow:
https://assetfare.dev/arazzo.yaml
Safety model
AssetFare MCP never accepts a private key and never signs or submits a transaction.
Read-only tools expose current status, signed manifest, and quotes.
State-changing tools only create authentication/session records or prepare/verify unsigned workflow actions. MCP clients should require user approval for those calls.
The caller independently verifies every returned unsigned action and signs/submits with its own wallets.
Related MCP server: trade-router-mcp
Remote endpoint
https://api.assetfare.dev/mcp
Official MCP Registry server: io.github.odaiin/assetfare.
REST/OpenAPI first call
Use the public quote endpoint when an agent has not explicitly connected MCP. No API key, wallet authentication, session, signature, or transaction is required for this read-only evaluation call:
node examples/rest-quote.mjs 300
python3 examples/rest_quote.py 300curl -sS https://api.assetfare.dev/v1/quote \
-H 'content-type: application/json' \
-d '{"from_chain":"solana","from_token":"SOL","to_chain":"base","to_token":"ETH","amount_usd":300}'Connect a remote MCP client directly—no package installation or AssetFare API key is required:
claude mcp add --transport http assetfare https://api.assetfare.dev/mcp{
"mcpServers": {
"assetfare": {
"url": "https://api.assetfare.dev/mcp"
}
}
}Codex CLI and app
Add the remote server from the CLI:
codex mcp add assetfare --url https://api.assetfare.dev/mcpOr add it to ~/.codex/config.toml or a project .codex/config.toml. The
writes approval mode prompts for tools that are not annotated read-only:
[mcp_servers.assetfare]
url = "https://api.assetfare.dev/mcp"
default_tools_approval_mode = "writes"Gemini CLI
gemini mcp add --transport http assetfare https://api.assetfare.dev/mcpEquivalent ~/.gemini/settings.json entry:
{
"mcpServers": {
"assetfare": {
"url": "https://api.assetfare.dev/mcp",
"type": "http",
"trust": false
}
}
}Cursor
Add the following server to a project .cursor/mcp.json or the global
~/.cursor/mcp.json:
{
"mcpServers": {
"assetfare": {
"url": "https://api.assetfare.dev/mcp"
}
}
}Connecting is unauthenticated. Execution tools subsequently require the wallet-bound token produced by AssetFare's non-transactional signMessage flow. Do not place that token in any MCP configuration file.
Agent skill
The portable Agent Skill is skills/assetfare-route/SKILL.md.
Skills.lc-compatible clients can install it directly from this public GitHub repository.
First-call evaluation
Run npm run first-call-eval to verify a fresh MCP client can discover the
tools, validate the signed manifest and status, and obtain a $300 quote without
creating a wallet login, session, signature, or transaction.
Use Streamable HTTP. The endpoint has no server-side API key; wallet authentication happens through the AssetFare tools.
Local stdio
The repository also contains a stdio-compatible wrapper for self-hosting. The public Registry entry uses the remote Streamable HTTP endpoint; npm publication is intentionally deferred until a separate package-release review.
Trust material
Security contact:
security@assetfare.devSecurity policy and private reporting:
https://github.com/odaiin/assetfare-mcp/security/policySigned manifest:
https://api.assetfare.dev/.well-known/assetfare-manifest.jsonPublic signing key:
https://assetfare.dev/.well-known/assetfare-manifest.pubStatus:
https://api.assetfare.dev/v1/statusOpenAPI:
https://api.assetfare.dev/openapi.jsonAPIs.json:
https://assetfare.dev/apis.jsonArazzo:
https://assetfare.dev/arazzo.yamlServer card:
https://api.assetfare.dev/.well-known/mcp/server-card.jsonAgent guide:
https://assetfare.dev/llms-full.txtMainnet evidence:
https://assetfare.dev/evidence/Live same-input comparison:
https://assetfare.dev/compare/solana-to-base/
Discovery
Official MCP Registry:
io.github.odaiin/assetfareSmithery:
https://smithery.ai/servers/twotw55/assetfareGlama:
https://glama.ai/mcp/connectors/io.github.odaiin/assetfareAgent Skill:
https://www.skills.sh/odaiin/assetfare-mcp/assetfare-route
The wrapper deliberately contains no AssetFare route engine, wallets, RPC credentials, or internal operations data.
Agent use case
For a Solana-to-Base $300 request, an agent reads the signed manifest and status, calls assetfare_quote, compares disclosed executable receive and ETA, and only then asks the wallet owner to approve the non-transactional login message. The agent independently signs and submits every on-chain action; this MCP server never does.
See the first-call evaluation script, the public mainnet evidence at https://assetfare.dev/evidence/, and the end-to-end case study at https://assetfare.dev/case-studies/solana-to-base-mainnet-canary/.
This server cannot be deployed
Maintenance
Related MCP Connectors
Non-custodial DeFi tools for AI agents on Solana: swaps, perps, lending, staking, equities.
Solana & Base DeFi intelligence for AI agents over x402: decisions, risk, signed receipts.
Safe Solana swaps for AI agents with risk checks, unsigned transactions, x402, and 3-bp fees.
Token swaps and honeypot/rug checks for AI agents on 8 chains, paid per-call in USDC via x402.
Related MCP Servers
- AlicenseCqualityDmaintenanceEnables AI agents to interact with cryptocurrency ecosystems through wallet management, trading operations (swaps, DCA, limit orders), staking, and multi-chain support starting with Solana.37GPL 3.0

trade-router-mcpofficial
AlicenseBqualityDmaintenanceNon-custodial Solana swap & limit order engine for AI agents. 21 tools - swap, limit, trailing, TWAP, DCA, combo orders - across Raydium, PumpSwap, Orca, Meteora. Jito MEV-protected execution. Ed25519-verified server messages. Private key never leaves the process.2192 npm3MIT- FlicenseAqualityFmaintenanceDeFi execution and agent-to-agent economy tools for AI agents — swaps, yield, transfers, policy enforcement, trust scoring, A2A jobs, and P\&L across Ethereum, Base, Arbitrum, and Polygon.311-

@1ly/mcp-serverofficial
AlicenseNot gradedqualityDmaintenanceEnables AI agents to discover, pay for, and sell APIs using crypto on Solana and Base networks, with support for automated x402 payments.87 npm3MIT