Try the Demo
We run a public ToolMesh demo at demo.toolmesh.io — a single MCP endpoint, two HN backends, zero API keys. Just enough to experience the complete ToolMesh flow: OAuth login, tool discovery, credential injection, execution, and audit.
What to try
Section titled “What to try”Once connected, try these prompts. Start with “Use ToolMesh to” to ensure your AI assistant uses the MCP tools instead of its built-in web search:
- “Use ToolMesh to get the top 5 stories on Hacker News with their scores and comment counts.” — live data via the Firebase API
- “Use ToolMesh to search HN for stories about ‘credential isolation’ — are there any recent discussions?” — full-text search via Algolia, filtered by recency
- “Use ToolMesh to compare the karma of HN users ‘dang’ and ‘pg’ — who has more?” — two API calls, structured comparison
Try combining both backends in a single prompt:
“Use ToolMesh to search HN for recent articles about AI agents, then get the full comment thread for the most discussed one.”
Connect
Section titled “Connect”Via the GUI
Section titled “Via the GUI”- Open a new chat and click the + button in the input area
- Click Connectors
- Click Manage Connectors
- Click + (top right)
- Click Add custom connector
- Enter the URL:
https://demo.toolmesh.io/mcp - Click Add
Claude Desktop opens a browser window for OAuth login. Log in with dadl / toolmesh.
Via config file (alternative)
Section titled “Via config file (alternative)”Add to your config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):
{ "mcpServers": { "toolmesh-demo": { "url": "https://demo.toolmesh.io/mcp" } }}Restart Claude Desktop after editing.
claude mcp add -t http -s user toolmesh-demo https://demo.toolmesh.io/mcpClaude Code prompts you to authenticate via OAuth in your browser. Log in with dadl / toolmesh.
Verify the connection:
claude mcp listRequires a Plus, Pro, Business, Enterprise, or Education plan.
- Open Settings > Apps & Connectors > Advanced settings and toggle Developer Mode on
- Go back to Apps & Connectors, click Create
- Fill in:
| Field | Value |
|---|---|
| Name | ToolMesh Demo |
| Description | Live demo — Hacker News via ToolMesh |
| MCP Server URL | https://demo.toolmesh.io/mcp |
| Authentication | OAuth |
- Check I trust this application and click Create
- ChatGPT redirects to the ToolMesh login page — log in with
dadl/toolmesh
What’s included
Section titled “What’s included”| Backend | Tools | What it does |
|---|---|---|
| Hacker News (Firebase API) | 10 | Browse stories, items, users, polls, and live feeds |
| Algolia HN Search | 4 | Full-text search across stories and comments |
The built-in echo tools are always available — useful for verifying your connection:
| Tool | What it does |
|---|---|
echo_echo(message) | Returns whatever you send it |
echo_add(a, b) | Adds two numbers |
echo_time() | Returns the current UTC time |
All tool calls run through the full ToolMesh pipeline: authentication, credential injection, execution, and audit logging.
About this demo
Section titled “About this demo”This demo is intentionally narrow: one public MCP endpoint, two read-only HN backends, no custom APIs — just enough to experience the complete ToolMesh flow without any setup overhead. It is a shared instance with no SLA.
The DADL registry has definitions for 14 APIs with 1,100+ tools. To connect your own APIs, run your own instance:
- Getting Started — self-hosted setup in 60 seconds
- Connect Claude — detailed setup for all Claude products
- Connect ChatGPT — ChatGPT Developer Mode setup