Skip to main content
Glama

mcp-blockchain

An MCP server that exposes blockchain data as native tools for any AI agent.

MCP Compatible License: MIT Status: Early

Status: early. Two tools work end to end. The rest are listed as planned β€” not built.


The Problem

AI agents can reason about financial data, but on-chain data sits behind bespoke integrations. Every agent framework ends up writing its own connector, and every model switch breaks it.

MCP standardizes the tool interface. This exposes blockchain reads through it.

Related MCP server: Ethereum RPC MPC Server

What It Does

mcp-blockchain is an MCP server exposing on-chain data as tools any MCP-compatible agent (Claude Code, Cursor, Gemini CLI) can call natively β€” the same way it would query a database.

Tools

Tool

Description

Status

get_wallet_balance(address, chain)

Native token balance (ETH/MATIC) for a wallet

βœ… Working

get_token_holdings(address, token_addresses, chain)

ERC-20 balances for a given token list

βœ… Working

get_transaction_history(address, limit)

Recent transactions

πŸ“‹ Planned

get_defi_pool_state(protocol, pool_id)

TVL, APY, liquidity

πŸ“‹ Planned

get_nft_holdings(address, chain)

NFT inventory

πŸ“‹ Planned

watch_contract_events(address, event_sig)

Subscribe to on-chain events

πŸ“‹ Planned

get_token_holdings requires an explicit list of ERC-20 contract addresses β€” there is no auto-discovery yet. That needs an indexer, which is why it isn't done.

Supported Chains

Ethereum, Polygon, and Base. Each defaults to a public RPC and can be overridden by environment variable.

Quick Start

Not yet published to npm β€” clone and run locally:

git clone https://github.com/shubhamdusane/mcp-blockchain.git
cd mcp-blockchain
npm install
node server.js

Add to your MCP client config (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "blockchain": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-blockchain/server.js"],
      "env": {
        "ETH_RPC_URL": "https://mainnet.infura.io/v3/YOUR_KEY"
      }
    }
  }
}

Environment variables

Variable

Default

ETH_RPC_URL

https://eth.llamarpc.com

POLYGON_RPC_URL

https://polygon.llamarpc.com

BASE_RPC_URL

https://mainnet.base.org

Public RPCs are rate-limited. Use your own endpoint for anything beyond experimentation.

Example

You: What's the ETH balance of 0x742d35Cc6634C0532925a3b8D4C9C4C7b7E6b7a?

Agent: [calls get_wallet_balance]
{
  "address": "0x742d35Cc6634C0532925a3b8D4C9C4C7b7E6b7a",
  "chain": "ethereum",
  "native_balance": { "formatted": "1.2470 ETH" }
}

Architecture

mcp-blockchain/
β”œβ”€β”€ tools/
β”‚   β”œβ”€β”€ get_wallet_balance.js     # native balance
β”‚   └── get_token_holdings.js     # ERC-20 balances
β”œβ”€β”€ chains/
β”‚   └── index.js                  # provider factory, RPC config, caching
β”œβ”€β”€ server.js                     # MCP server entrypoint
β”œβ”€β”€ package.json
└── LICENSE

Each tool exports a tool descriptor (name, description, JSON input schema) and an execute function. server.js registers them. Adding a tool means adding one file and one registration line.

Scope

Read-only by design. No signing, no key handling, no transaction submission. An agent using this cannot move funds β€” it can only observe chain state.

Good First Issues

  • Add Arbitrum to the provider factory

  • Add get_gas_price()

  • ENS name resolution for addresses

  • Test suite for the chain adapters

  • Implement get_transaction_history (needs an indexer or explorer API)

Contributing

PRs welcome. Keep tools single-purpose and read-only.

Built By

Shubham Dusane β€” blockchain engineer and AI product lead. 6 years across smart contracts and agent infrastructure.

License

MIT β€” see LICENSE.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

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

View all related MCP servers

Related MCP Connectors

  • MCP server connecting AI agents to non-custodial staking data across 130+ networks.

  • Provide AI agents and automation tools with contextual access to blockchain data including balance…

  • Read-only on-chain intelligence for AI agents on Base: balances, tokens, gas, tx status.

View all MCP Connectors

Latest Blog Posts

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/shubhamdusane/mcp-blockchain'

If you have feedback or need assistance with the MCP directory API, please join our Discord server