Skip to main content
Glama
2moulin
by 2moulin

Get a Stripe event

stripe_get_event

Retrieve a Stripe event's payload, pending webhook count, and triggering request by event ID to inspect webhook activity.

Instructions

One event with its payload (clipped), pending webhook count and the request that caused it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It discloses that the payload is clipped escal, and that the response includes pending webhook count and the originating request. This goes beyond the schema, though it does not mention error behavior or authorization requirements.

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?

A single, front-loaded sentence conveys the tool's purpose and key behavioral detail. There is no redundant or filler content.

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

Completeness4/5

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

For a simple single-parameter get tool with no output schema, the description captures the essential returned fields and a notable behavior (clipped payload). It omits details like not-found handling, but these are less critical for a straightforward retrieval tool.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explain the event_id parameter beyond what the property name and pattern already imply. Since the coverage is low, the description was expected to compensate, but it does not address parameter meaning or format.

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 identifies a specific verb and resource: retrieving one Stripe event. It distinguishes itself from stripe_list_events by emphasizing 'one event' and enumerates the returned details (payload, pending webhook count, causing request).

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 clearly implies this is for fetching a single event rather than listing events, which is the main sibling alternative. It provides useful context about what the result contains, but does not explicitly state when not to use it or name alternatives.

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