MCPBundler Docs
MCPBundler Docs
Volver al marketplacePrimeros PasosAutenticacionTutorial - De un Bundle a un Agente Conectado
API Reference
Agent A2A Tools
Agent Channels
Agent Configuration (Staging)
Agent Configuration (Versions)
Agent Tools
Agents
Auth
Billing
Bundler
Append Conversation Messages (M2M)Append Workflow Run Trace Step (M2M, fail-open)Create Conversation (M2M)Create Workflow Run (M2M)Dispatch a Matched Tool-Call Webhook (M2M)Finalize Workflow Run Outputs (M2M, fail-closed on the caller's side)Ingest Request TelemetryResolve An SMS Conversation Thread (M2M)Mint Widget Session Token (M2M)Reconcile Token LedgerReport An Outbound Call Outcome (M2M)Resolve Agent (M2M)Resolve Agent Config Snapshot (M2M)Resolve Agent for Inbound A2A (M2M, conditionally authenticated)Resolve BundleResolve Inbound Channel (M2M)Resolve LLM Credential (M2M)Resolve Telephony Credential For Outbound Origination (M2M)Resolve Tool-Call Override Bindings (M2M)Resolve Tool-Call Webhook Bindings (M2M)Resolve Public Widget Embed Key (M2M)Resolve Agent Workflow (M2M)Search Agent Knowledge Bases (M2M)Store Workflow Node Samples (M2M, fail-open)Submit Conversation Extraction (M2M)Update Conversation Status (M2M)Record Channel Status (M2M)
Bundler Tool
Bundles
Call Campaigns
Catalog
Conversations
Credentials
Deployments
Discover
Embedding
Fleet
Knowledge Bases
LLM
MCP Listings
Media
OAuth Clients
OAuth2
Observability
Organisations
Realtime
Reviews
Roadmap
SCIM
STT
Suppression
Triggers
TTS
Users
Utils
Voices
Webhooks
Workflows
API ReferenceBundler

Dispatch a Matched Tool-Call Webhook (M2M)

POST
/v1/bundler/tool-call-webhook-events

Called by mcpbundler after it locally matches a completed tool call against a cached binding. Re-validates the binding belongs to this token's bundle and is still enabled before dispatching - the client-reported match is a hint, never authorization. Fire-and-forget: this always returns 204 regardless of whether the binding was valid or the dispatch succeeded, matching the spec's 'no retry, best-effort' contract - see docs/superpowers/specs/2026-08-19-bundler-tool-call-webhooks-design.md.

Authorization

BundleAccessToken
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v1/bundler/tool-call-webhook-events" \  -H "Content-Type: application/json" \  -d '{    "binding_id": "5d504e2c-6584-4e34-8583-0863b8c4c0c1",    "tool_name": "string",    "namespace": "string",    "arguments": {},    "success": true,    "session_id": "string",    "called_at": "2019-08-24T14:15:22Z"  }'
Empty
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

Create Workflow Run (M2M)

Previous Page

Finalize Workflow Run Outputs (M2M, fail-closed on the caller's side)

Next Page

binding_id*Binding Id
Formatuuid
tool_name*Tool Name
namespace*Namespace
arguments*
success*Success
session_id*Session Id
called_at*Called At
Formatdate-time