streamable-httpupdated 1mo ago
The discovery-and-payment layer for AI agents. ToolHail lets an AI agent find the right MCP (Model Context Protocol) server for any task and call it โ paying per use โ without installing anything.
What can you do with gateway?
ToolHail
The discovery-and-payment layer for AI agents. ToolHail lets an AI agent find the right MCP (Model Context Protocol) server for any task and call it โ paying per use โ without installing anything.
There are 10,000+ MCP servers an agent could use, and no good way to discover and use one mid-task. ToolHail closes that gap with two tools:
- ๐
find_mcp_server(free) โ describe a capability in plain language ("query a Postgres database","send a Slack message","scrape a web page") and get ranked, deduplicated MCP servers from every major registry (mcp.so, PulseMCP, Smithery, Glama) with ready-to-paste setup. - โก
call_tool(paid) โ invoke a discovered remote MCP server through ToolHail's SSRF-guarded proxy. No install, one hop; each successful call is metered and billed through Stripe.
Use it
Hosted MCP endpoint (Streamable HTTP):
https://mcp.toolhail.com/mcp
Add it to Claude Code (or any MCP client):
claude mcp add --transport http toolhail https://mcp.toolhail.com/mcp
MCP Scout on the Apify Store โ the discovery engine as a standalone, pay-per-search actor: https://apify.com/01010101/mcp-scout
Site: https://toolhail.com ยท Guide: https://toolhail.com/guide
How it works
- Discover โ the agent hits a capability gap and asks
find_mcp_server, which searches the registries and returns the best-fit servers, ranked for usability. - Execute โ instead of installing, the agent calls the chosen tool via
call_tool; ToolHail proxies it in one hop, nothing to configure. - Settle โ each successful call is metered and billed through Stripe. The agent pays for exactly what it used.
Why it exists
An agent's toolset is fixed at configuration time, but real tasks need capabilities the agent doesn't have. Today the options are "hard-code every server you might ever need" or "give up." ToolHail makes tools a runtime resource: discovered on demand, called through one endpoint, paid per use. It is discovery and payment infrastructure for the agentic web โ built entirely on the open Model Context Protocol.
Repo layout
| Path | What |
|---|---|
apify-mcp-scout/ |
MCP Scout โ the discovery engine, published on the Apify Store (live) |
gateway-worker/ |
Hosted MCP gateway on Cloudflare Workers โ find_mcp_server + call_tool (live at mcp.toolhail.com) |
gateway/ |
Reference gateway + Stripe metering + tests |
landing/ |
toolhail.com site (landing + guide + llms.txt) |
registry/ |
MCP registry listing metadata (server.json) + submission playbook |
dashboard/ |
Private revenue/usage dashboard |
brand/ |
Brand assets |
Built on
Model Context Protocol ยท Cloudflare Workers ยท Stripe ยท Apify
Install
Add gateway to your client. Pick the one you use.
claude mcp add --transport http gateway https://mcp.toolhail.com/mcpcodex mcp add gateway --url https://mcp.toolhail.com/mcp{
"mcpServers": {
"gateway": {
"url": "https://mcp.toolhail.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"gateway": {
"type": "http",
"url": "https://mcp.toolhail.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"gateway": {
"url": "https://mcp.toolhail.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"gateway": {
"serverUrl": "https://mcp.toolhail.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation18/25
- Maintenance16/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 37 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 0.2.0Latest | Jul 19, 2026 |