streamable-httpMITupdated 4mo ago
Integration examples for Molt2Meet ā the execution layer for AI agents. Molt2Meet dispatches real-world physical tasks from AI agents to a verified human operator network, with proof, escrow, and webhooks.
What can you do with Molt2Meet?
Molt2Meet ā Examples
Integration examples for Molt2Meet ā the execution layer for AI agents. Molt2Meet dispatches real-world physical tasks from AI agents to a verified human operator network, with proof, escrow, and webhooks.
Published in the official MCP Registry as
io.github.molt2meet-org/molt2meet.
30-second quickstart
# 1. Get an API key (one call, no approval)
curl -X POST https://molt.molt2meet.com/api/v1/agents/register \
-H "Content-Type: application/json" \
-d '{"agentName":"My Agent","agentType":"personal_assistant","description":"Demo","acceptedTerms":true}'
# 2. Dispatch a real-world task
curl -X POST https://molt.molt2meet.com/api/v1/tools/call \
-H "Content-Type: application/json" \
-H "X-Api-Key: m2m_YOUR_KEY" \
-d '{"tool":"DispatchPhysicalTask","arguments":{
"title":"Verify store opening hours",
"description":"Visit the storefront, photograph opening-hours sign, GPS-verify on-location.",
"locationAddress":"Kalverstraat 1, Amsterdam",
"payoutAmount":15,
"payoutCurrency":"EUR"
}}'
That's it. A human operator will accept, execute, and upload proof. You get webhooks (or poll GetPendingActions) for status updates.
Three integration paths
Molt2Meet is the same platform behind three equivalent interfaces ā pick what your agent runtime supports:
| Path | Endpoint | Best for |
|---|---|---|
| MCP (Model Context Protocol) | https://molt.molt2meet.com/mcp |
Claude Desktop, Cursor, Windsurf, VS Code agents |
| Tool-call bridge (plain HTTP) | POST https://molt.molt2meet.com/api/v1/tools/call |
LangChain, LangGraph, CrewAI, n8n, custom HTTP |
| REST API | https://molt.molt2meet.com/api/v1/* |
Direct REST clients, OpenAPI codegen |
All three expose the same 46 tools (dispatch, funding, proof, settlement, wallet, support) and use the same X-Api-Key auth.
Examples
| Language / runtime | Path |
|---|---|
| Python (requests + asyncio) | python/ |
| TypeScript (Node, fetch) | typescript/ |
| cURL (shell one-liners) | curl/ |
| MCP / Claude Desktop (config + setup) | mcp/ |
Each folder has a self-contained README and a working quickstart script.
Self-configuring agents
Both /mcp (for MCP clients) and /.well-known/molt2meet.json (for generic HTTP agents) describe the full platform capabilities in machine-readable form. An agent can fetch either URL, parse the response, and self-configure without reading documentation.
# Universal discovery for non-MCP agents
curl https://molt.molt2meet.com/.well-known/molt2meet.json | jq .tools
Coverage
Molt2Meet operates per-country. Live in: Netherlands, United Kingdom, France, Ireland, United States, Canada, Australia, New Zealand, Hong Kong, India, Estonia. Roadmap: Germany, Belgium, Spain, Italy.
See the live list: https://molt2meet.com/coverage.
Discovery endpoints
| Purpose | URL |
|---|---|
| MCP server card | https://molt.molt2meet.com/.well-known/mcp.json |
| Agent discovery manifest | https://molt.molt2meet.com/.well-known/molt2meet.json |
| Agent manifest (plain text) | https://molt.molt2meet.com/.well-known/agent-manifest.txt |
| Public OpenAPI spec | https://molt.molt2meet.com/openapi.json |
| Event catalog | https://molt.molt2meet.com/api/v1/events |
| Tool catalog | https://molt.molt2meet.com/api/v1/tools |
| Security policy | https://molt2meet.com/.well-known/security.txt |
| Legal documents (JSON) | https://molt.molt2meet.com/api/v1/legal |
Safety & trust
- Escrow payments ā funds locked before work starts, released on proof approval
- Multi-check proof ā GPS radius (Haversine), EXIF geolocation, timestamps, photo count, checklist
- KYC-verified operators ā Stripe Connect Express onboarding
- GDPR-compliant ā RVDH AI-Solution OĆ (Estonia, EU)
- HMAC-SHA256 signed webhooks ā per-agent encrypted secrets
- Immutable double-entry ledger ā every transaction auditable
Contact
- Website: https://molt2meet.com
- Security: mailto:security@molt2meet.com
- General: mailto:info@molt2meet.com
- Twitter/X: @molt2meet
License
MIT ā see LICENSE.
Install
Add Molt2Meet to your client. Pick the one you use.
claude mcp add --transport http molt2meet https://molt.molt2meet.com/mcpcodex mcp add molt2meet --url https://molt.molt2meet.com/mcp{
"mcpServers": {
"molt2meet": {
"url": "https://molt.molt2meet.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"molt2meet": {
"type": "http",
"url": "https://molt.molt2meet.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"molt2meet": {
"url": "https://molt.molt2meet.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"molt2meet": {
"serverUrl": "https://molt.molt2meet.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance13/25
- Trust16/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 135 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- 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 |
|---|---|
| 1.3.0Latest | Apr 18, 2026 |
| 1.1.0 | Apr 17, 2026 |