EB

Ergo Blockchain MCP

Created 6 months ago

A standardization tool for Ergo MCP API responses that transforms various output formats into a consistent JSON structure.

development location documentation public API blockchain

What is Ergo Blockchain MCP?

An MCP server to integrate Ergo Blockchain Node and Explorer APIs for checking address balances, analyzing transactions, viewing transaction history, performing forensic analysis of addresses, searching for tokens, and monitoring network status.

Documentation

Installation# Prerequisites

  • Python 3.8+
  • Access to Ergo Explorer API
  • Optional: Access to Ergo Node API (for advanced features)\n\n### Setup
  1. Clone the repository:
    git clone https://github.com/ergo-mcp/ergo-explorer-mcp.git
    cd ergo-explorer-mcp
    
  2. Install dependencies:
    pip install -r requirements.txt
    
  3. Configure your environment:
    export ERGO_EXPLORER_API="https://api.ergoplatform.com/api/v1"
    export ERGO_NODE_API="http://your-node-address:9053"
    export ERGO_NODE_API_KEY="your-api-key"
    
  4. Run the MCP server:
    python -m ergo_explorer.server
    ```\n\n### Docker Installation (Recommended)
    
  5. Build the Docker image:
    docker build -t ergo-explorer-mcp .
    
  6. Run the container:
    docker run -d -p 8000:8000 \
    
  • e ERGO_EXPLORER_API="https://api.ergoplatform.com/api/v1" \
  • e ERGO_NODE_API="http://your-node-address:9053" \
  • e ERGO_NODE_API_KEY="your-api-key" \
  • -name ergo-mcp ergo-explorer-mcp

Server Config

{
  "mcpServers": {
    "ergo-blockchain-mcp-server": {
      "command": "npx",
      "args": [
        "ergo-blockchain-mcp"
      ]
    }
  }
}

Links & Status

Repository: github.com
Hosted: Yes
Global: Yes
Official: Yes

Project Info

Hosted Featured
Created At: May 23, 2025
Updated At: Aug 07, 2025
Author: Marc The Shark
Category: community
License: MIT License
Tags:
development location documentation