Get product
gumroad_get_productGet a single product by id. Gumroad REST: GET /v2/products/{id}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The product id. |
gumroad_get_productGet a single product by id. Gumroad REST: GET /v2/products/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The product id. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, so the agent knows it's a safe read operation. The description adds little beyond the REST endpoint reference; it does not mention return format, errors, authentication, or any other behavioral details, so minimal value is added.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with the purpose front-loaded and the REST endpoint as a supplementary detail. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 1-param, read-only tool with no output schema, the description adequately states what it does. It could mention return value or error behavior, but given the tool's simplicity and annotations, it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers the only parameter 'id' with description 'The product id.' at 100% coverage. The description's 'by id' adds no new meaning; baseline is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'product' with the scope 'single by id'. This distinguishes it from sibling tools like list_products, making it unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving one product by id but does not explicitly mention when to use alternatives such as list_products for multiple products. No clear when-not-to-use guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.