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
| Name | Type | Required | Description |
|---|---|---|---|
chain_id_or_short_name | string | yes | |
https_only | boolean | no | Default 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
| Field | Type | Description |
|---|---|---|
chain_id | integer | EVM chain ID |
short_name | string | Short chain name |
rpcs | array | Filtered 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.