10 months ago
A minimal Model Context Protocol (MCP) server that fetches the current Ethereum (ETH) price in USD.
Data source: the public CoinGecko API (no API key required).
Server Config
{
"mcpServers": {
"eth-price": {
"command": "/absolute/path/to/your/.venv/bin/python",
"args": [
"/absolute/path/to/your/repo/get_ETH_Price.py"
],
"env": {
"PYTHONUNBUFFERED": "1"
}
}
}
}