Back to Browse

Examples MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Dispatch real-world physical tasks to verified human operators. Escrow or direct-settlement.

About

Dispatch real-world physical tasks to verified human operators. Escrow or direct-settlement.

Remote endpoints: streamable-http: https://molt.molt2meet.com/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

Endpoint verified · Open access · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-molt2meet-org-molt2meet": {
      "url": "https://molt.molt2meet.com/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Molt2Meet — Examples

MCP Registry Website License: MIT

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:

PathEndpointBest for
MCP (Model Context Protocol)https://molt.molt2meet.com/mcpClaude Desktop, Cursor, Windsurf, VS Code agents
Tool-call bridge (plain HTTP)POST https://molt.molt2meet.com/api/v1/tools/callLangChain, LangGraph, CrewAI, n8n, custom HTTP
REST APIhttps://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 / runtimePath
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

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

License

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!