find_rpc

Pack: chainlist · Endpoint: https://gateway.pipeworx.io/chainlist/mcp

Return RPC endpoints for a chain. https_only=true filters out ws:// + http:// only.

Parameters

NameTypeRequiredDescription
chain_id_or_short_namestringyes
https_onlybooleannoDefault true

Example call

curl -X POST https://gateway.pipeworx.io/chainlist/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_rpc","arguments":{}}}'

Response shape

Always returns: chain_id, short_name, rpcs

FieldTypeDescription
chain_idintegerEVM chain ID
short_namestringShort chain name
rpcsarrayFiltered RPC endpoint URLs
Full JSON Schema
{
  "type": "object",
  "properties": {
    "chain_id": {
      "type": "integer",
      "description": "EVM chain ID"
    },
    "short_name": {
      "type": "string",
      "description": "Short chain name"
    },
    "rpcs": {
      "type": "array",
      "description": "Filtered RPC endpoint URLs",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "chain_id",
    "short_name",
    "rpcs"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "chainlist": {
      "url": "https://gateway.pipeworx.io/chainlist/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026