Skip to main content
Glama
krovacloud

@krovacloud/mcp

Official

Get Webhook

get_webhook
Read-only

Retrieve a webhook endpoint by ID to view its URL, subscribed events, and enabled status. Signing secrets remain hidden for security.

Instructions

Get a single webhook endpoint by id, including the URL, subscribed events, and enabled flag. The signing secret is never returned — it is only available at create time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
spaceIdNoKrova Cloud Space id. Optional if KROVA_SPACE_ID is set as the server default.
endpointIdYesThe webhook endpoint id (see list_webhooks).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.8

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations include readOnlyHint=true, which covers the read-only nature. The description adds valuable behavioral context beyond annotations by explicitly stating that the signing secret is never returned and is only available at create time, plus enumerates what fields are included in the response.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exactly two sentences with no filler. The primary purpose and key behavioral note are front-loaded, and every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with two parameters and no output schema, the description covers the purpose, the return contents, and an important exclusion (signing secret). Combined with the annotations and schema, it provides everything an agent needs to call this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so both parameters (spaceId and endpointId) are already documented in the schema. The tool description does not add extra parameter-level meaning beyond the schema, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get'), the resource ('a single webhook endpoint by id'), and the specific fields returned (URL, subscribed events, enabled flag). It distinguishes itself from siblings like list_webhooks (which lists all) by focusing on a single endpoint by id.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes it clear this tool is for retrieving a specific webhook by id, implying it is used when you have an endpoint id and need its details. It does not explicitly mention alternatives or when not to use it, but the context is unambiguous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.