search
Pack: blockscout · Endpoint: https://gateway.pipeworx.io/blockscout/mcp
“Search [chain] for [query]” / “is [string] a token / contract / address on [chain]” — universal block-explorer search across addresses, transactions, blocks, tokens, and ENS-style names on a specific EVM chain. Use when you don’t know yet whether the input is an address / hash / token symbol.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | |
query | string | yes |
Example call
Arguments
{
"chain": "ethereum",
"query": "0x1234567890123456789012345678901234567890"
}
curl
curl -X POST https://gateway.pipeworx.io/blockscout/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search","arguments":{"chain":"ethereum","query":"0x1234567890123456789012345678901234567890"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search', {
"chain": "ethereum",
"query": "0x1234567890123456789012345678901234567890"
});
More examples
{
"chain": "arbitrum",
"query": "USDC"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Universal search results from Blockscout API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"blockscout": {
"url": "https://gateway.pipeworx.io/blockscout/mcp"
}
}
}
See Getting Started for client-specific install steps.