MCP.so
Sign In
Servers
E

Eth Price Current Server

@cluster3115

A minimal Model Context Protocol (MCP) server that fetches the current Ethereum (ETH) price in USD.

Installation

Different clients require a JSON config file pointing to the Python interpreter and script.

Add:

{
  "mcpServers": {
    "eth-price": {
      "command": "/absolute/path/to/your/.venv/bin/python",
      "args": [
        "/absolute/path/to/your/repo/get_ETH_Price.py"
      ],
      "env": {
        "PYTHONUNBUFFERED": "1"
      }
    }
  }
}

FAQ

Q: Do I need an API key?
A: No. CoinGecko’s simple/price endpoint is public, but may have rate limits.

Q: Why do I get -1.0?
A: This means the request failed. Show an error message without numbers and retry later.

More from Other