Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server that gives AI agents fast access to verified EVM chain information, including RPC URLs, chain IDs, explorers, and native tokens.

README.md

Chainlist MCP Server

An MCP server that gives AI agents fast access to verified EVM chain information, including RPC URLs, chain IDs, explorers, and native tokens — sourced from Chainlist.org.

!GitHub License !Python Version !Status

Features

  • Efficient Data Fetching: Caches Chainlist API data to minimize requests.
  • Flexible Search: Case-insensitive keyword matching using regex for getChainsByKeyword.
  • Structured Output: Markdown responses with tabulated rpc and explorers for readability.

Installation

Prerequisites

  • Python: Version 3.10 or higher.
  • uv: Recommended for managing Python projects and dependencies (install via pip install uv or follow uv documentation).

Steps

  1. Clone the Repository:
   git clone https://github.com/kukapay/chainlist-mcp.git
   cd chainlist-mcp
  1. Install Dependencies:
   uv sync
  1. Installing to Claude Desktop:

Install the server as a Claude Desktop application: ``bash uv run mcp install cli.py --name "Chainlist MCP" ``

Configuration file as a reference:

    {
       "mcpServers": {
           "Chainlist MCP": {
               "command": "uv",
               "args": [ "--directory", "/path/to/chainlist-mcp", "run", "main.py" ] 
           }
       }
    }

Replace /path/to/chainlist-mcp with your actual installation path.

Usage

The server exposes two tools via the MCP protocol, accessible through MCP-compatible clients or the MCP Inspector.

Tools

getChainById

  • Description: Retrieves details of a blockchain by its chain ID.
  • Parameters:
  • chain_id (integer): The unique identifier of the blockchain (e.g., 1 for Ethereum Mainnet).
  • Returns: A Markdown string with chain details or an error message.

Example Prompt (in an MCP client): `` Get the details for the blockchain with chain ID 1. ``

Example Response: ```markdown Chain Details

  • Name: Ethereum Mainnet
  • Chain ID: 1
  • Native Currency: Ether (ETH, 18 decimals)
  • TVL: 134376951329.85631

RPC Endpoints: | URL | Tracking | |----------------------------------------------|----------| | https://eth.llamarpc.com | none | | https://go.getblock.io/... | none | ... Explorers: | Name | URL | Standard | |------------|----------------------------|----------| | etherscan | https://etherscan.io | EIP3091 | ... ```

getChainsByKeyword

  • Description: Searches for blockchains by keyword (case-insensitive partial match).
  • Parameters:
  • keyword (string): The keyword or partial name to search (e.g., 'eth').
  • limit (integer, optional): Maximum number of results (default: 5).
  • Returns: A Markdown string listing up to limit matching chains or an error message.

Example Prompt (in an MCP client): `` Find blockchains with 'eth' in their name, limit to 2 results. ``

Example Response: ```markdown Matching Chains

Chain 1

Chain Details

  • Name: Ethereum Mainnet
  • Chain ID: 1
  • Native Currency: Ether (ETH, 18 decimals)
  • TVL: 134376951329.85631

RPC Endpoints: | URL | Tracking | |----------------------------------------------|----------| | https://eth.llamarpc.com | none | ... Explorers: | Name | URL | Standard | |------------|----------------------------|----------| | etherscan | https://etherscan.io | EIP3091 | ...

Chain 2

Chain Details

  • Name: Ethereum Goerli
  • Chain ID: 5
  • Native Currency: Ether (ETH, 18 decimals)
  • TVL: N/A

RPC Endpoints: | URL | Tracking | |----------------------------------------------|----------| | https://goerli.infura.io/... | yes | ... Explorers: | Name | URL | Standard | |------------|----------------------------|----------| | etherscan | https://goerli.etherscan.io | EIP3091 | ... ```

License

This project is licensed under the MIT License. See the LICENSE file for details.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.