Discovery
Discover services
Start with current networks and service categories instead of hardcoded provider lists.

Chain.Love MCP Gateway
Discover services, connect tools, and execute downstream MCP calls through one Chain.Love endpoint.
Agent path
discover
Find the right chain, category, and service from the registry.
connect
Attach session-scoped credentials or select a saved connection.
inspect
List the tools exposed by the downstream MCP.
execute
Call the downstream tool and return the result to the agent.
What it does
Discovery
Start with current networks and service categories instead of hardcoded provider lists.
Registry
Find Web3 infrastructure, APIs, docs, and MCP-ready services through one registry surface.
Execution
Connect downstream MCPs, inspect available tools, and call them through the gateway session.
Runtime flow
Agent
Claude, Cursor, Codex, or another MCP client
Chain.Love MCP Gateway
Auth, registry discovery, and execute dispatch
Chain.Love Registry
Release-backed chains, categories, and services
Downstream MCP
GitHub, Blockscout, docs, APIs, or other tool servers
Tool Result
Structured response returned to the same session
Why it matters
Agents ask the gateway for current chains and categories before they search, so stale provider lists do not leak into the workflow.
The same MCP endpoint handles registry lookup, connection selection, downstream validation, tool listing, and tool calls.
Public discovery, gateway authentication, and downstream credentials are handled as separate concerns.
Access
Registry discovery can stay open while tool execution remains scoped through gateway tokens and downstream credentials.
Setup
Use the hosted gateway URL in your MCP client. Add optional downstream credentials only when a private MCP requires them, using x-chainlove-cred-<credentialKey> headers.
Config
mcp_config.json
{
"mcpServers": {
"chainlove-gateway": {
"url": "https://app.chain.love/mcp",
"headers": {
"x-chainlove-cred-<credentialKey>": "<credentialValue>"
}
}
}
}Try it with your agent