home / mcp / adamik mcp server
Adamik MCP
Configuration
View docs{
"mcpServers": {
"adamikhq-adamik-mcp-server": {
"command": "npx",
"args": [
"@adamik/mcp-server"
],
"env": {
"ADAMIK_API_KEY": "YOUR_API_KEY",
"ADAMIK_API_BASE_URL": "https://api.adamik.io/api"
}
}
}
}Adamik MCP Server lets you control 60+ blockchains through natural language conversations. You can ask for balances, transfers, history, staking, and cross‑chain actions in simple terms, and the server translates those requests into trusted blockchain operations.
You connect an MCP client to the Adams MCP Server and interact using natural language prompts. Typical workflows include checking balances, sending funds, reviewing transaction history, staking assets, and performing cross‑chain actions offered by the server. Start with a simple query like: "What is my balance on Ethereum?" Then layer in more complex actions such as "Send 0.1 ETH to 0x123..." or "Show my transaction history on Polygon". If you have access to premium features, you can request cross‑chain swaps or conversions across supported networks.
# Option 1: NPX (Recommended)
npx @adamik/mcp-server
# Option 2: Global Install
npm install -g @adamik/mcp-server
adamik-mcp-server
# Option 3: Local Development
git clone https://github.com/AdamikHQ/adamik-mcp-server.git
cd adamik-mcp-server
pnpm install && pnpm build
node build/index.js# Claude Desktop (JSON)
{
"mcpServers": {
"adamik": {
"command": "npx",
"args": ["@adamik/mcp-server"],
"env": {
"ADAMIK_API_KEY": "your-api-key"
}
}
}
}The MCP server uses an API key to authorize requests from your MCP client. You can also optionally configure a base URL for the Adams API if you are pointing to a specific instance or environment.
ADAMIK_API_KEY=your-api-key-here
ADAMIK_API_BASE_URL=https://api.adamik.io/api # OptionalQuery the current balance for a given account on a specific blockchain network.
Retrieve and analyze transaction history across one or more networks.
Initiate native or token transfers between addresses on a chosen network.
Perform cross-chain transfers or bridge assets between different blockchains.
Stake assets and track staking rewards across supported networks.