Chain.Love MCP
- agent-framework
## Overview
About
What is Chain.Love MCP?
Chain.Love MCP is a hosted remote MCP server and gateway operated by Chain.Love. It gives AI agents a single integration surface for discovering and comparing Web3 infrastructure services across 50+ blockchain networks, covering categories such as RPCs, indexing, oracles, storage, compute, and developer tools.
How to use Chain.Love MCP?
Add the hosted gateway URL to your MCP client configuration using the endpoint https://app.chain.love/mcp with Streamable HTTP transport. For private MCP servers that require credentials, include x-chainlove-cred-<credentialKey> headers. The required credentialKey for each service can be found in the open‑source registry file mcpservers.csv or through the Chain.Love UI.
Key features of Chain.Love MCP
- Hosted MCP gateway for AI agents
- Single remote entrypoint to discover Web3 infrastructure
- Covers 50+ blockchain networks
- Supports categories: RPCs, indexing, oracles, storage, compute, developer tools
- Streamable HTTP transport (no local package needed)
- Credential forwarding via custom headers
Use cases of Chain.Love MCP
- AI agents discovering and comparing Web3 infrastructure services across multiple blockchains
- Developers integrating Web3 tools into AI workflows through a single hosted endpoint
- Teams needing a managed MCP gateway without running their own server
FAQ from Chain.Love MCP
What transport does Chain.Love MCP use?
It uses Streamable HTTP at the endpoint https://app.chain.love/mcp.
How do I add credentials for private MCP servers?
Add x-chainlove-cred-<credentialKey> headers to the client configuration. The credentialKey is specific to each private MCP and can be found in the registry file mcpservers.csv or the Chain.Love UI.
Is Chain.Love MCP a self‑hosted package?
No, it is a hosted remote MCP server. This repository does not contain a local package; it is a public landing page pointing to the production service.
Which blockchain networks are supported?
Chain.Love MCP supports over 50 blockchain networks, including categories like RPCs, indexing, oracles, storage, compute, and developer tools.
Where can I find documentation and the registry?
Documentation is at https://chain-love.gitbook.io/mcp-module, and the open‑source registry is at https://github.com/Chain-Love/chain-love.
Details
- Author
- Chain-Love
- Category
- agent-framework
- Repository
- chain-love/chain.love-mcp
Chain.Love MCP
Hosted MCP gateway for AI agents to discover and compare Web3 infrastructure services across 50+ blockchain networks through a single remote endpoint.
Overview
This repository is the public entrypoint for Chain.Love MCP. It is intentionally lightweight and exists to provide clear metadata, documentation, and registry-facing references for the product.
Chain.Love MCP is a hosted remote MCP server and gateway operated by Chain.Love. It gives AI agents a single integration surface for discovering and comparing Web3 infrastructure services across 50+ blockchain networks, including categories such as RPCs, indexing, oracles, storage, compute, developer tools, and related infrastructure.
The product is positioned as both an MCP gateway and an aggregator. This repository does not contain the production implementation or a local self-hosted package. Instead, it serves as a clean public landing point for GitHub visitors, MCP registries, directories, reviewers, and users evaluating the hosted service.
This repository exists so that:
- GitHub visitors can quickly understand the product
- MCP registries and directories have a stable public repository to reference
- reviewers can verify endpoint, transport, and documentation links
- users arriving from listings have a clear path to official onboarding material
The live production implementation is maintained in a private codebase.
Key Capabilities
- Hosted MCP gateway for AI agents
- Single remote entrypoint for agents to discover and compare Web3 infrastructure services across 50+ blockchain networks using the Chain.Love Web3 registry
- Covers categories such as RPCs, indexing, oracles, storage, compute, developer tools, and related infrastructure
- Product-facing access through one hosted endpoint rather than a local package in this repository
Public Links
- Landing page: https://www.chain.love/mcp-gateway
- Documentation: https://chain-love.gitbook.io/mcp-module
- Open-source Chain.Love repository: https://github.com/Chain-Love/chain-love
- Official MCP Registry: https://registry.modelcontextprotocol.io
- Registry identifier: love.chain.app/chainlove-mcp
- Glama listing: https://glama.ai/mcp/connectors/love.chain.app/chainlove-mcp
Quick Start
Chain.Love MCP is intended to be consumed as a remote hosted MCP server.
- Hosted endpoint: https://app.chain.love/mcp
- Transport: Streamable HTTP
Add Chain.Love MCP to your MCP client configuration using the hosted gateway URL.
{
"mcpServers": {
"chainlove-gateway": {
"url": "https://app.chain.love/mcp"
}
}
}
Use the hosted gateway URL in your MCP client and add downstream credentials only when a private MCP requires them, using x-chainlove-cred-<credentialKey> headers.
To understand which header name you need, open the open-source registry file mcpservers.csv or browse the UI at https://app.chain.love/toolbox/mcpservers, choose the MCP server you want, and check its credentialKey value.
Generic private MCP credential pattern:
{
"mcpServers": {
"chainlove-gateway": {
"url": "https://app.chain.love/mcp",
"headers": {
"x-chainlove-cred-<credentialKey>": "<credentialValue>"
}
}
}
}
Example: GitHub MCP
{
"mcpServers": {
"chainlove-gateway": {
"url": "https://app.chain.love/mcp",
"headers": {
"x-chainlove-cred-github": "<GITHUB_TOKEN>"
}
}
}
}