Amper MCP Server
OfficialIntegrates with the Hermes terminal agent to enable natural language DeFi operations such as swaps, lending, bridging, and portfolio management on multiple chains.
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., "@Amper MCP ServerSwap 0.1 ETH to USDC on Base"
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.
Amper MCP Server
MCP server that exposes Amper's 80+ DeFi tools to any MCP-compatible client.
Natural language in, onchain transactions out.
Quick Install
Add Amper to your MCP client with a single config block. Requires Node.js 18+ and an Amper API key.
Claude Code
Add to .mcp.json (project root) or ~/.claude.json (global):
{
"mcpServers": {
"amper": {
"command": "npx",
"args": ["-y", "amper-mcp-server"],
"env": {
"AMPER_API_KEY": "amp_live_your_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"amper": {
"command": "npx",
"args": ["-y", "amper-mcp-server"],
"env": {
"AMPER_API_KEY": "amp_live_your_key_here"
}
}
}
}Windsurf
Add to .windsurf/mcp.json:
{
"mcpServers": {
"amper": {
"command": "npx",
"args": ["-y", "amper-mcp-server"],
"env": {
"AMPER_API_KEY": "amp_live_your_key_here"
}
}
}
}Hermes
# ~/.hermes/config.yaml
mcp_servers:
amper:
command: "npx"
args: ["-y", "amper-mcp-server"]
env:
AMPER_API_KEY: "amp_live_your_key_here"Or install globally for faster startup:
npm install -g amper-mcp-server# ~/.hermes/config.yaml
mcp_servers:
amper:
command: "amper-mcp-server"
env:
AMPER_API_KEY: "amp_live_your_key_here"Related MCP server: agenti
Get an API Key
Sign up at app.amper.chat
Subscribe ($6/month, 500 requests/day) or fund your embedded wallet with USDC on Base for pay-per-request (https://www.amper.chat/docs/api/pricing)
Go to Settings > API and create a key
Keys start with
amp_live_and come in two scopes:Read. Price checks, analytics, portfolio queries
Write. Everything above plus swaps, lending, bridging, and all onchain execution
Hermes Full Setup Guide
Hermes is an open-source terminal agent by Nous Research. Follow these steps to go from zero to executing DeFi operations from your terminal.
1. Install Hermes
macOS / Linux / WSL2:
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bashWindows (PowerShell):
iex (irm https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.ps1)Verify the installation:
hermes --versionThen run initial setup:
hermes setupThis will prompt you for your preferred LLM provider and model. If you have a Nous Portal account, use hermes setup --portal instead.
2. Add the Amper MCP Server
Edit ~/.hermes/config.yaml and add the amper entry under mcp_servers (see Hermes config above).
3. Verify
Launch Hermes and try a few commands:
hermes> What is the price of ETH?
> Show my portfolio on Base
> Swap 0.001 ETH to USDC on BaseType /tools inside Hermes to list all available Amper tools.
Configuration
Variable | Required | Description |
| Yes | Your API key (must start with |
| No | Override the API base URL (default: |
Rate Limits
Limit | Value |
Per minute | 30 requests |
Per day | 500 requests |
Concurrency | Sequential (one at a time per key) |
How It Works
Discovery. Fetches all tools from
/api/v1/toolson startup (cached 5 min).Execution. Each tool call hits
POST /api/v1/executewith a unique idempotency key.Timeouts. 65s for trade tools, 35s for read tools.
Transport. Stdio. Your MCP client spawns the server as a subprocess.
Available Tools
80+ tools across these categories:
Category | Examples |
Token Operations | Swaps, transfers, approvals, wrapping |
Lending | Aave v3 deposits, withdrawals, borrowing |
Vaults | Morpho vault deposits, withdrawals, rewards |
Perpetuals | Avantis positions and limit orders (up to 500x) |
Options | Derive options trading and sessions |
Staking | Venice staking and reward claims |
Token Creation | Clanker token deployment and image generation |
Analytics | DefiLlama TVL, Codex token data, price feeds |
Bridges | Cross-chain transfers |
Troubleshooting
Error | Fix |
| Check that your key starts with |
| Generate a new key in Settings > API |
| You're using a Read key for a write operation. Create a Write key |
| No active subscription or insufficient USDC balance |
MCP server not loading | Verify Node.js 18+ is installed ( |
Tools not appearing (Hermes) | Run |
License
MIT
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
- Flicense-qualityCmaintenanceAn enterprise-grade MCP server platform for executing real DeFi operations on Solana and EVM chains using natural language. It enables users to perform live trading, volume generation, and wallet management directly within Claude Desktop.Last updated28
- Alicense-qualityDmaintenanceEnables any MCP-compatible LLM client to autonomously hold, spend, earn, and receive cryptocurrency using native MCP tools, no code required.Last updated270ISC
- Flicense-qualityDmaintenanceEnables natural language interaction for token launches, liquidity management, and treasury operations on Solana via the Model Context Protocol.Last updated10
- Alicense-qualityCmaintenanceEnables AI-powered chat and DeFi operations (swap, transfer) via MCP-compliant tools, integrating with LLMs for onchain actions.Last updated13MIT
Related MCP Connectors
Multi-aggregator swap router for AI agents on Base. 10 bps fee. MCP-native, non-custodial.
Native Solana staking for AI agents. 26 MCP tools, one-shot signing, webhooks.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
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/helloamper/amper-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server