Skip to main content
Glama
yamayued
by yamayued

Get Patent Documents

get_patent_documents
Read-only

Fetch Japanese patent application document bundles by 10-digit application number and document kind, including amendment, refusal reason, and decision packages.

Instructions

Fetch patent application document bundles such as amendment, refusal reason, and decision packages.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
documentKindYesone of: opinion_amendment, refusal_reason, refusal_reason_decision
applicationNumberYesJapan patent application number (10 digits)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds no behavioral context beyond that: it doesn't say whether the bundle is paginated, what a bundle contains, or any retrieval constraints, and there is no output schema to compensate.

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

Conciseness4/5

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

A single efficient sentence with the resource front-loaded and no padding. It is appropriately sized, though it is too terse to be exemplary given the tool's role.

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

Completeness3/5

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

With no output schema, the description partially compensates by naming bundle kinds, but it omits what a returned bundle actually contains and when to prefer this over sibling document tools. Adequate minimum but with clear gaps for a two-required-parameter fetch tool.

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 coverage is 100%, so both parameters are already documented in the schema (including the 10-digit application number pattern and the documentKind enum). The description's bundle examples overlap the enum values and add no syntax or constraint detail, so baseline 3 applies.

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

Purpose4/5

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

States a specific verb (Fetch) and resource (patent application document bundles) and enumerates concrete bundle kinds (amendment, refusal reason, decision). It does not, however, distinguish itself from close siblings like get_patent_jp_document or get_patent_global_document, leaving the agent to infer the boundary.

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

Usage Guidelines2/5

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

No when-to-use context, no prerequisites, and no mention of alternative document tools among the many siblings. The agent must guess when this is the right fetch tool versus get_patent_jp_document.

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