swap-mcp
Click on "Install 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., "@swap-mcpget a quote to swap 1 ETH for USDC"
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.
swap-mcp
OAuth-protected Uniswap swap service on Cloudflare Workers, exposing an MCP server and a mirrored REST API.
Status: Code-complete and fully tested (203 tests), not yet deployed.
Trust model: Single-operator custodial. The Worker holds one funded private key and signs swaps on your behalf. Anyone who mints a token can spend from that key, bounded only by the swap safety rails. Run it for yourself, not as a shared service.
Before you deploy: split the Durable Object migration tags into
v1/v2/v3and setCANONICAL_MCP_URIto your real Worker origin. Both steps are covered in the deploy how-to.
What it is
An AI agent (over the Model Context Protocol) or any HTTP client (over REST)
requests price quotes and executes ETH↔USDC swaps through the Uniswap Trading
API. A single OAuth 2.1 access token authorizes both surfaces; the /mcp and
/api handlers are mirrors of the same four operations.
Every swap is persisted in D1 and serialized through a Durable Object coordinator that enforces one in-flight swap at a time and applies drift, slippage, and balance safety rails before signing. Failed or interrupted swaps leave a durable row you can reconcile against the chain.
Related MCP server: Uniswap Trader MCP
Architecture at a glance
Surface | Path | Auth |
MCP server |
| Bearer token, |
REST mirror |
| Same token, same scopes |
OAuth 2.1 + consent |
| Passphrase-gated consent |
The entry point (src/index.ts) is a @cloudflare/workers-oauth-provider
instance wrapping the MCP and REST handlers. It binds:
Binding | Type | Purpose |
| KV | OAuth grant + consent state |
| D1 | The |
| Durable Object | Serializes swap execution |
| Durable Object | Per-session MCP agent |
| Durable Object | Passphrase-attempt budgets |
Surfaces
Each MCP tool has a REST mirror and a required scope:
MCP tool | REST mirror | Scope |
|
|
|
|
|
|
|
|
|
|
|
|
For request/response schemas, the swaps data model, and the 11-code error
allowlist, see the API and data-model reference.
Quick start
pnpm install # install dependencies
pnpm dev # run the Worker locally with hot reload
pnpm test # run the full suite (203 tests, zero network)The suite mocks all chain and Trading API I/O, so it needs no secrets. For the full local walkthrough (mint an operator token through the OAuth dance and run a mocked quote), follow the getting-started tutorial.
Documentation
The docs/ tree follows the Diátaxis framework:
Tutorial
Getting started: stand up locally, mint a token, run a mocked quote.
How-to guides
Configure secrets and deploy: set the four secrets, replace binding ids, apply migration tags, deploy.
Run the one-time USDC approval: clear an
approval_requiredfailure on USDC→ETH swaps.Reconcile a stranded submitted swap: resolve a swap stuck in
submitted.
Reference
API and data model: MCP tools, REST endpoints,
swapsschema, error allowlist.
Explanation
Architecture decisions: why OAuthProvider + McpAgent, the coordinator, the safety rails, and the custodial trade-offs.
Commands
Command | What it does |
| Local dev server ( |
| Deploy to Cloudflare ( |
| Run the vitest suite |
| Type-check with |
| Check formatting ( |
| Apply formatting ( |
| Regenerate the |
| Generate a drizzle migration from the schema |
| Manual real-chain smoke script: hits a deployed env; never run by the suite |
Tech stack
Cloudflare Workers (Hono, Durable Objects, D1, KV), @cloudflare/workers-oauth-provider,
@modelcontextprotocol/sdk, the agents SDK, drizzle-orm, viem, and zod. Tested
with vitest and @cloudflare/vitest-pool-workers.
License
No license file yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceAn MCP server for AI agents to automate token swaps on Uniswap DEX across multiple blockchains.Last updated938MIT
- Alicense-qualityDmaintenanceEnables AI agents to automate token swaps on Uniswap DEX across multiple blockchains including Ethereum, Optimism, Polygon, Arbitrum, and more, with real-time price quotes, swap execution, and multi-hop route optimization.Last updated9MIT

paean-dex-mcpofficial
Alicense-qualityDmaintenanceDEX trading MCP server enabling autonomous token swaps on Base (Uniswap v3) and Solana (Jupiter) for AI agents, with privacy-first design and read-only mode.Last updated155MIT- Flicense-qualityBmaintenanceExposes Uniswap V2 and V3 on-chain data and swap execution as MCP tools, resources, and prompts, enabling AI agents to query prices, inspect pools, get quotes, and execute trades.Last updated
Related MCP Connectors
Multi-aggregator swap router for AI agents on Base. 10 bps fee. MCP-native, non-custodial.
Token swaps and honeypot/rug checks for AI agents on 8 chains, paid per-call in USDC via x402.
Non-custodial DeFi for AI agents: swaps, concentrated liquidity (V3/V4) zaps + ranges, 5 EVM chains
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/simon-tanna/swap-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server