Skip to content

Commit b6a10d1

Browse files
committed
docs(mcp): update destination description to mention HTTP, CLI, MOCK types
https://claude.ai/code/session_01Y2eJZgKG78nDyN6Uw2tWQx
1 parent 2d8dd61 commit b6a10d1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pkg/gateway/mcp/tool_help.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Current project: %s
3838
hookdeck_projects — List or switch projects (actions: list, use)
3939
hookdeck_connections — Inspect connections and control delivery flow (actions: list, get, pause, unpause)
4040
hookdeck_sources — Inspect inbound sources (actions: list, get)
41-
hookdeck_destinations — Inspect delivery destinations (actions: list, get)
41+
hookdeck_destinations — Inspect delivery destinations: HTTP, CLI, MOCK (actions: list, get)
4242
hookdeck_transformations — Inspect JavaScript transformations (actions: list, get)
4343
hookdeck_requests — Query inbound requests (actions: list, get, raw_body, events, ignored_events)
4444
hookdeck_events — Query processed events (actions: list, get, raw_body)
@@ -94,7 +94,7 @@ Parameters:
9494
limit (integer) — Max results (list, default 100)
9595
next/prev (string) — Pagination cursors (list)`,
9696

97-
"hookdeck_destinations": `hookdeck_destinations — Inspect delivery destinations
97+
"hookdeck_destinations": `hookdeck_destinations — Inspect delivery destinations (types: HTTP, CLI, MOCK)
9898
9999
Actions:
100100
list — List destinations with optional filters

pkg/gateway/mcp/tools.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func toolDefs(client *hookdeck.Client) []struct {
6666
{
6767
tool: &mcpsdk.Tool{
6868
Name: "hookdeck_destinations",
69-
Description: "List and inspect delivery destinations (HTTP endpoints where events are sent). Returns destination configuration including URL, authentication, and rate limiting settings.",
69+
Description: "List and inspect delivery destinations where events are sent. Destination types include HTTP endpoints, CLI (local development), and MOCK (testing). Returns destination configuration including URL, authentication, and rate limiting settings.",
7070
InputSchema: schema(map[string]prop{
7171
"action": {Type: "string", Desc: "Action: list or get", Enum: []string{"list", "get"}},
7272
"id": {Type: "string", Desc: "Destination ID (required for get)"},

0 commit comments

Comments
 (0)