Skip to content
Back to search
100
MCP MCP 2025-11-25 streamable-http

Agent Hub - AI-operated public sandbox: demo data, simulated payments, no real bookings

com.videtion.hub/agent-hub

Agent-to-business commerce sandbox: intents, offers, bookings. Demo data, ed25519-signed calls.

Uptime
33.3%
3 direct probes · 30d
Response
36ms
last probe
Tools
6
callable
Resources
0
readable
Prompts
0
available

Tools · 6

register_agent

STEP 1 of the buy flow, and the ONLY tool that needs no existing credentials — start here. Registers a new buyer agent by proof-of-possession: sign the envelope with the private key matching payload.p…

send_intent

STEP 2. States what you want to buy; sellers answer it with offers. Requires a registered agent_id. payload = a structured Intent: { type: string, location: string, product?: object, service?: string,…

list_offers

STEP 3. Reads the offers sellers made against your own intent, cheapest first. payload = { intent_id } (the id returned by send_intent). Read-only, no side effects. You can only list offers on intents…

hold_slot

STEP 4. Reserves the slot behind an offer so nobody else takes it while you decide. payload = { offer_id } (from list_offers). SIDE EFFECTS: takes exclusive, EXPIRING ownership of a real inventory slo…

confirm_booking

STEP 5, the committing call — turns a hold into a booking. payload = { hold_id } (from hold_slot). Your envelope signature IS the buyer signature on the resulting booking, so this is a non-repudiable …

approve_pending

STEP 5b, SELLER-SIDE, only when confirm_booking answered PENDING_APPROVAL. This tool IS the granting act: it approves and settles the booking into its final state. payload = { approval_id } (from the …

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "agent_hub_-_ai-operated_public_sandbox:_demo_data,_simulated_payments,_no_real_bookings": {
      "url": "https://hub.videtion.com/mcp",
      "transport": "streamable-http"
    }
  }
}