by AdamikHQ
Adamik MCP Server: a standardized multi-chain API powering read/write access to 60+ blockchains via Claude Desktop for t
Connects Claude to 60+ blockchain networks for reading account data, managing transactions, and performing staking operations across multiple chains through natural language commands.
Adamik MCP Server is an official MCP server published by AdamikHQ that provides AI assistants with tools and capabilities via the Model Context Protocol. Adamik MCP Server: a standardized multi-chain API powering read/write access to 60+ blockchains via Claude Desktop for t It is categorized under finance, developer tools.
You can install Adamik MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Adamik MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Strong directory entry: Adamik MCP Server surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Adamik MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Adamik MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Adamik MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired Adamik MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
According to our notes, Adamik MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
According to our notes, Adamik MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired Adamik MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
I recommend Adamik MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Adamik MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 35
# Just ask in natural language:
"Check my ETH balance on Ethereum"
"Send 0.1 ETH to 0x123"
"Stake 100 ATOM with the best validator"
"Convert 1000 USDC to ETH on Optimism" # Premium feature
"Show my transaction history on Polygon"
No complex setup. No wallet management hassles. Just natural conversations with blockchains.
Visit adamik.io → Sign up → Copy your API key (takes 30 seconds)
# Install instantly
npx @adamik/mcp-server
# Add to Claude Desktop config
{
"mcpServers": {
"adamik": {
"command": "npx",
"args": ["@adamik/mcp-server"],
"env": {
"ADAMIK_API_KEY": "your-api-key-here"
}
}
}
}
Open Claude Desktop and ask: "What's my Optimism/Tron/Solana balance?"
That's it! 🎉
npx @adamik/mcp-server
npm install -g @adamik/mcp-server
adamik-mcp-server
git clone https://github.com/AdamikHQ/adamik-mcp-server.git
cd adamik-mcp-server
pnpm install && pnpm build
node build/index.js
{
"mcpServers": {
"adamik": {
"command": "npx",
"args": ["@adamik/mcp-server"],
"env": {
"ADAMIK_API_KEY": "your-api-key"
}
}
}
}
</details>
<details>
<summary><strong>FastAgent (YAML)</strong></summary>
mcp:
servers:
adamik:
command: "npx"
args: ["@adamik/mcp-server"]
env:
ADAMIK_API_KEY: "your-api-key"
</details>
<details>
<summary><strong>Environment Variables</strong></summary>
ADAMIK_API_KEY=your-api-key-here
ADAMIK_API_BASE_URL=https://api.adamik.io/api # Optional
</details>
graph LR
A[MCP Client] --> B[Adamik MCP Server]
B --> C[Adamik API]
A --> E[Optional: Signer Server]
C --> D[60+ Blockchains]
E --> F[Wallet Integration]
We love contributions! Here's how to get started:
git checkout -b feature/amazing-featuregit commit -m 'Add amazing feature'git push origin feature/amazing-featuregit clone https://github.com/AdamikHQ/adamik-mcp-server.git
cd adamik-mcp-server
pnpm instal
pnpm build
Testing your changes: Update your MCP client config to point to the local build:
{
"command": "node",
"args": ["/path/to/your/adamik-mcp-server/build/index.js"],
"env": { "ADAMIK_API_KEY": "your-api-key" }
}
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.