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. - 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 e
Add this skill
npx mdskills install kukapay/chainlist-mcpWell-documented MCP server with clear tool descriptions and excellent examples for blockchain queries
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.
getChainsByKeyword.rpc and explorers for readability.pip install uv or follow uv documentation).Clone the Repository:
git clone https://github.com/kukapay/chainlist-mcp.git
cd chainlist-mcp
Install Dependencies:
uv sync
Installing to Claude Desktop:
Install the server as a Claude Desktop application:
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.
The server exposes two tools via the MCP protocol, accessible through MCP-compatible clients or the MCP Inspector.
getChainByIdchain_id (integer): The unique identifier of the blockchain (e.g., 1 for Ethereum Mainnet).Example Prompt (in an MCP client):
Get the details for the blockchain with chain ID 1.
Example Response:
**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 |
...
getChainsByKeywordkeyword (string): The keyword or partial name to search (e.g., 'eth').limit (integer, optional): Maximum number of results (default: 5).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:
**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 |
...
This project is licensed under the MIT License. See the LICENSE file for details.
Install via CLI
npx mdskills install kukapay/chainlist-mcpChainlist MCP Server is a free, open-source AI agent skill. 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. - 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 e
Install Chainlist MCP Server with a single command:
npx mdskills install kukapay/chainlist-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Chainlist MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.