// get custom made design.md fileslearn more
financedeveloper-tools

Adamik MCP Server

by AdamikHQ

Adamik MCP Server: a standardized multi-chain API powering read/write access to 60+ blockchains via Claude Desktop for t

Enables read and write interactions with 60+ blockchain networks through Claude Desktop, providing a standardized multi-chain API for transaction management, account insights, staking, and token interactions.

github stars

2

0 commentsdiscussion

Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.

60+ blockchain networks supportedNatural language blockchain operationsEnterprise-grade infrastructure

best for

  • / Crypto portfolio management and tracking
  • / DeFi operations and staking management
  • / Multi-chain transaction automation
  • / Blockchain developers building applications

capabilities

  • / Check balances across 60+ blockchain networks
  • / Execute native and token transfers
  • / Analyze transaction history and portfolio data
  • / Perform staking and unstaking operations
  • / Track staking rewards across multiple chains
  • / Manage cross-chain swaps and bridges

what it does

Connects Claude to 60+ blockchain networks for reading account data, managing transactions, and performing staking operations across multiple chains through natural language commands.

about

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.

how to install

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.

license

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.

readme

🚀 Adamik MCP Server

NPM Version Downloads Smithery Badge GitHub Stars

<p align="center"> <img src="logo.png" alt="Adamik Logo" style="width:35%; height:35%;"/> </p> <h2 align="center">🌐 Control 60+ Blockchains with Natural Language</h2> <p align="center"> <strong>The most powerful blockchain MCP server for Claude, ChatGPT, and any MCP client</strong><br/> Turn complex blockchain operations into simple conversations </p> <p align="center"> <a href="#-quick-start">🚀 Quick Start</a> • <a href="#-features">✨ Features</a> • <a href="#-examples">💡 Examples</a> • <a href="#-installation">📦 Installation</a> • <a href="https://adamik.io/">🌐 Website</a> </p>

✨ Features

<table> <tr> <td width="50%">

🔗 60+ Blockchain Networks

  • Ethereum, Bitcoin, Solana, Cosmos
  • Polygon, Arbitrum, Optimism, Base
  • Starknet, Aptos, Tron, and many more

💰 Complete Account Management

  • Real-time balance checking
  • Transaction history analysis
  • Multi-chain portfolio overview
  • Staking rewards tracking
</td> <td width="50%">

🔄 Advanced Operations

  • Native & token transfers
  • Cross-chain swaps & bridges ⭐ Premium
  • Staking & unstaking

🛠 Developer Friendly

  • Type-safe schemas
  • Comprehensive error handling
  • Enterprise-grade infrastructure
  • Easy integration with signer server
</td> </tr> </table>

💡 What You Can Do

# 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.


🚀 Quick Start

1️⃣ Get Your Free API Key

Visit adamik.io → Sign up → Copy your API key (takes 30 seconds)

2️⃣ Install & Configure

# 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"
      }
    }
  }
}

3️⃣ Start Using

Open Claude Desktop and ask: "What's my Optimism/Tron/Solana balance?"

That's it! 🎉


🎯 Supported MCP Clients

<table> <tr> <td align="center"> <img src="https://claude.ai/favicon.ico" width="32" height="32"><br/> <strong>Claude Desktop</strong><br/> <em>Premium Required</em> </td> <td align="center"> 🖥️<br/> <strong>FastAgent</strong><br/> <em>Developer Friendly</em> </td> <td align="center"> 🔧<br/> <strong>Your App</strong><br/> <em>MCP Compatible</em> </td> </tr> </table>

📦 Installation Options

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

🔧 Configuration Examples

<details> <summary><strong>Claude Desktop (JSON)</strong></summary>
{
  "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>

🏗️ Architecture

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]

🤝 Contributing

We love contributions! Here's how to get started:

  1. Fork this repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Commit your changes: git commit -m 'Add amazing feature'
  4. Push to the branch: git push origin feature/amazing-feature
  5. Open a Pull Request

Development Setup

git 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" }
}

📚 Related Projects


🆘 Support


<p align="center"> <strong>⭐ Star this repo if you find it useful!</strong><br/> <em>Developed by the <a href="https://adamik.io">Adamik</a> team</em> </p>

FAQ

What is the Adamik MCP Server MCP server?
Adamik MCP Server is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Adamik MCP Server?
This profile displays 35 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.6 out of 5—verify behavior in your own environment before production use.

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.

List & Promote Your MCP Server

Share your MCP server with the developer community

GET_STARTED →
MCP server reviews

Ratings

4.635 reviews
  • Nikhil Thomas· Dec 16, 2024

    Strong directory entry: Adamik MCP Server surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Chaitanya Patil· Dec 12, 2024

    Adamik MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Chen Yang· Nov 19, 2024

    Adamik MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Amelia Mehta· Nov 15, 2024

    I recommend Adamik MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Amelia Menon· Nov 7, 2024

    We wired Adamik MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Piyush G· Nov 3, 2024

    According to our notes, Adamik MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Alexander Sethi· Oct 26, 2024

    According to our notes, Adamik MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Shikha Mishra· Oct 22, 2024

    We wired Adamik MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • James White· Oct 10, 2024

    I recommend Adamik MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Alexander Reddy· Oct 6, 2024

    Adamik MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

showing 1-10 of 35

1 / 4