_ registry / mcp http-sse

etherscan-mcp

https://mcp-keyless.etherscan.io

Registry code: 20550a4eeedd5d07

api record

Read-only blockchain explorer. Tools only retrieve public Etherscan or Blockscan data; they cannot sign or broadcast transactions, verify contracts, manage API keys, or modify state.

endpoint
https://mcp-keyless.etherscan.io/mcp
protocol
http-sse ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
unknown
uptime
—
latency
—

last good check

priced tools
0

of 16 tools

_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 16 tools
16 never probed 0 of 16 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • get_internal_transactions unknown never probed

    Get internal transactions for an address, or by a specific parent transaction hash.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "page": {
          "type": "integer",
          "minimum": 1,
          "description": "Page number (1-based)."
        },
        "sort": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort order by block number."
        },
        "offset": {
          "type": "integer",
          "maximum": 10000,
          "minimum": 1,
          "description": "Records per page (max 10000)."
        },
        "txhash": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Parent transaction hash (omit if using address)."
        },
        "address": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "description": "Account address (omit if using txhash)."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        },
        "endblock": {
          "type": "integer",
          "minimum": 0,
          "description": "End block number."
        },
        "startblock": {
          "type": "integer",
          "minimum": 0,
          "description": "Start block number."
        }
      },
      "additionalProperties": false
    }
    arguments 51 lines
  • get_token_transfers unknown never probed

    Get token transfer events for an address, optionally filtered by token contract. Select the token standard: erc20 (fungible, default), erc721 (NFT), or erc1155 (multi-token).

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "page": {
          "type": "integer",
          "minimum": 1,
          "description": "Page number (1-based)."
        },
        "sort": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort order by block number."
        },
        "offset": {
          "type": "integer",
          "maximum": 10000,
          "minimum": 1,
          "description": "Records per page (max 10000)."
        },
        "address": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "description": "Account address."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        },
        "endblock": {
          "type": "integer",
          "minimum": 0,
          "description": "End block number."
        },
        "standard": {
          "enum": [
            "erc20",
            "erc721",
            "erc1155"
          ],
          "type": "string",
          "description": "Token standard: erc20 (default), erc721, or erc1155."
        },
        "startblock": {
          "type": "integer",
          "minimum": 0,
          "description": "Start block number."
        },
        "contractaddress": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "description": "Token contract address to filter by."
        }
      },
      "additionalProperties": false
    }
    arguments 60 lines
  • get_contract_source unknown never probed

    Get the verified source code and metadata for a contract address.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "address"
      ],
      "properties": {
        "address": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "description": "Contract address."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        }
      },
      "additionalProperties": false
    }
    arguments 20 lines
  • get_contract_abi unknown never probed

    Get the verified ABI (JSON) for a contract address.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "address"
      ],
      "properties": {
        "address": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "description": "Contract address."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        }
      },
      "additionalProperties": false
    }
    arguments 20 lines
  • get_contract_creation unknown never probed

    Get the creator address and creation transaction hash for up to 5 contract addresses. The multi-kilobyte creation bytecode is omitted by default to keep responses small; set include_creation_bytecode=true to include it.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "contractaddresses"
      ],
      "properties": {
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        },
        "contractaddresses": {
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^0x[a-fA-F0-9]{40}$"
          },
          "maxItems": 5,
          "minItems": 1,
          "description": "List of contract addresses (1-5)."
        },
        "include_creation_bytecode": {
          "type": "boolean",
          "description": "Include the full contract creation bytecode (several KB per contract). Omitted by default."
        }
      },
      "additionalProperties": false
    }
    arguments 29 lines
  • get_transaction_receipt_status unknown never probed

    Get the receipt status of a transaction (1 = success, 0 = failed). Post-Byzantium only.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "txhash"
      ],
      "properties": {
        "txhash": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Transaction hash."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        }
      },
      "additionalProperties": false
    }
    arguments 20 lines
  • get_transaction_status unknown never probed

    Get the contract execution status of a transaction (detects failed/erroring executions).

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "txhash"
      ],
      "properties": {
        "txhash": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Transaction hash."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        }
      },
      "additionalProperties": false
    }
    arguments 20 lines
  • get_gas_oracle unknown never probed

    Get current gas price recommendations (safe / propose / fast) from the gas tracker.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        }
      },
      "additionalProperties": false
    }
    arguments 12 lines
  • get_block_by_timestamp unknown never probed

    Get the block number closest to a given Unix timestamp (seconds).

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "timestamp"
      ],
      "properties": {
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        },
        "closest": {
          "enum": [
            "before",
            "after"
          ],
          "type": "string",
          "description": "Return closest block before or after. Default before."
        },
        "timestamp": {
          "type": "integer",
          "minimum": 0,
          "description": "Unix timestamp in seconds."
        }
      },
      "additionalProperties": false
    }
    arguments 28 lines
  • get_supported_chains unknown never probed

    Get the chains / chain IDs supported by the Etherscan V2 API. In the hosted (proxy) deployment this returns a bundled snapshot shipped with the server, refreshed when the package is updated; in direct/stdio mode it queries the live chain-list endpoint. A chain's absence from the returned list is not proof that it lacks live support.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {}
    }
    arguments 5 lines
  • get_native_balance unknown never probed

    Get the native coin (e.g. ETH) balance of an address, in wei.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "address"
      ],
      "properties": {
        "tag": {
          "enum": [
            "latest",
            "earliest",
            "pending"
          ],
          "type": "string",
          "description": "Block tag. Default latest."
        },
        "address": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "description": "Account address to query."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        }
      },
      "additionalProperties": false
    }
    arguments 29 lines
  • get_transactions unknown never probed

    Get the list of normal (external) transactions for an address.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "address"
      ],
      "properties": {
        "page": {
          "type": "integer",
          "minimum": 1,
          "description": "Page number (1-based)."
        },
        "sort": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort order by block number."
        },
        "offset": {
          "type": "integer",
          "maximum": 10000,
          "minimum": 1,
          "description": "Records per page (max 10000)."
        },
        "address": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "description": "Account address to query."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        },
        "endblock": {
          "type": "integer",
          "minimum": 0,
          "description": "End block number."
        },
        "startblock": {
          "type": "integer",
          "minimum": 0,
          "description": "Start block number."
        }
      },
      "additionalProperties": false
    }
    arguments 49 lines
  • get_logs unknown never probed

    Search event logs by contract address and/or topics over a block range. Topics are 32-byte hex values; topic0 is usually the keccak256 event-signature hash. Adjacent-topic operators (and/or) combine multiple topic filters. Provide 'address' and/or at least one topic.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "page": {
          "type": "integer",
          "minimum": 1,
          "description": "Page number (1-based)."
        },
        "offset": {
          "type": "integer",
          "maximum": 1000,
          "minimum": 1,
          "description": "Records per page (max 1000)."
        },
        "topic0": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Topic 0 — usually the keccak256 event-signature hash."
        },
        "topic1": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Topic 1 (first indexed argument)."
        },
        "topic2": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Topic 2 (second indexed argument)."
        },
        "topic3": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Topic 3 (third indexed argument)."
        },
        "address": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "description": "Contract address to filter by (optional if filtering by topics)."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        },
        "toblock": {
          "anyOf": [
            {
              "type": "integer",
              "minimum": 0
            },
            {
              "type": "string",
              "const": "latest"
            }
          ],
          "description": "End block number, or \"latest\". Default latest."
        },
        "fromblock": {
          "anyOf": [
            {
              "type": "integer",
              "minimum": 0
            },
            {
              "type": "string",
              "const": "latest"
            }
          ],
          "description": "Start block number, or \"latest\". Default 0."
        },
        "topic0_1_opr": {
          "enum": [
            "and",
            "or"
          ],
          "type": "string",
          "description": "Combine topic0 and topic1: and | or."
        },
        "topic1_2_opr": {
          "enum": [
            "and",
            "or"
          ],
          "type": "string",
          "description": "Combine topic1 and topic2: and | or."
        },
        "topic2_3_opr": {
          "enum": [
            "and",
            "or"
          ],
          "type": "string",
          "description": "Combine topic2 and topic3: and | or."
        }
      },
      "additionalProperties": false
    }
    arguments 98 lines
  • get_transaction_by_hash unknown never probed

    Get the full transaction object for a transaction hash (from, to, value, input data, gas, gas price, nonce, block number/hash, transaction index). Returns null if the hash is unknown.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "txhash"
      ],
      "properties": {
        "txhash": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Transaction hash."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        }
      },
      "additionalProperties": false
    }
    arguments 20 lines
  • get_transaction_receipt unknown never probed

    Get the transaction receipt for a transaction hash (execution status, gas used, cumulative gas used, effective gas price, logs, and the created contract address for deployments). Returns null if the hash is unknown or the transaction is still pending.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "txhash"
      ],
      "properties": {
        "txhash": {
          "type": "string",
          "pattern": "^0x[a-fA-F0-9]{64}$",
          "description": "Transaction hash."
        },
        "chainid": {
          "type": "string",
          "pattern": "^\\d+$",
          "description": "Numeric chain id (e.g. 1=Ethereum, 56=BNB, 137=Polygon). If omitted, defaults to Ethereum Mainnet (1)."
        }
      },
      "additionalProperties": false
    }
    arguments 20 lines
  • render_etherscan_widget unknown never probed

    Present exact facts returned by Etherscan data tools in a fast explorer-style card. Call the relevant Etherscan data tool first and copy only supported values into this tool. Never invent scores, risk labels, historical prices, forecasts, or audit conclusions.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "view",
        "title"
      ],
      "properties": {
        "view": {
          "enum": [
            "wallet",
            "token",
            "transaction",
            "contract",
            "gas",
            "general"
          ],
          "type": "string",
          "description": "The factual Etherscan result category to display."
        },
        "chain": {
          "type": "string",
          "maxLength": 80
        },
        "chart": {
          "type": "object",
          "required": [
            "title",
            "points"
          ],
          "properties": {
            "title": {
              "type": "string",
              "maxLength": 80,
              "minLength": 1
            },
            "points": {
              "type": "array",
              "items": {
                "type": "number"
              },
              "maxItems": 40,
              "minItems": 2
            },
            "endLabel": {
              "type": "string",
              "maxLength": 40
            },
            "startLabel": {
              "type": "string",
              "maxLength": 40
            }
          },
          "additionalProperties": false
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/properties/metrics/items"
          },
          "default": [],
          "maxItems": 12
        },
        "title": {
          "type": "string",
          "maxLength": 100,
          "minLength": 1
        },
        "footer": {
          "type": "string",
          "maxLength": 240
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "label",
              "value"
            ],
            "properties": {
              "label": {
                "type": "string",
                "maxLength": 80,
                "minLength": 1
              },
              "value": {
                "type": "string",
                "maxLength": 240,
                "minLength": 1
              },
              "detail": {
                "type": "string",
                "maxLength": 300
              }
            },
            "additionalProperties": false
          },
          "default": [],
          "maxItems": 6
        },
        "sections": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "title",
              "items"
            ],
            "properties": {
              "items": {
                "type": "array",
                "items": {
                  "$ref": "#/properties/metrics/items"
                },
                "maxItems": 12
              },
              "title": {
                "type": "string",
                "maxLength": 80,
                "minLength": 1
              },
              "layout": {
                "enum": [
                  "cards",
                  "rows",
                  "chips"
                ],
                "type": "string",
                "default": "rows"
              }
            },
            "additionalProperties": false
          },
          "default": [],
          "maxItems": 4
        },
        "subtitle": {
          "type": "string",
          "maxLength": 180
        },
        "explorerUrl": {
          "type": "string",
          "format": "uri"
        }
      },
      "additionalProperties": false
    }
    arguments 148 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/20550a4eeedd5d07/badge.svg)](https://brick.blue/agent/20550a4eeedd5d07)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.

_ also on etherscan.io 1 entry

Served from the same domain, which is what was measured. Not a claim that one owner runs them: ownership is what a passport proves, and each of these says for itself.