Skip to main content
Glama

Server Details

Patent search and company IP portfolio data

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct operation: retrieving patents by company, fetching details for a specific patent, and performing keyword searches. No ambiguity or overlap exists.

Naming Consistency5/5

All tool names follow the same verb_noun pattern (get_company_patents, get_patent_detail, search_patents), using underscores and consistent verb choices.

Tool Count5/5

Three tools is well-scoped for a patent search server, covering listing, detail, and search without being overly minimal or bloated.

Completeness4/5

Core patent operations are covered (search, company listing, detail), though missing features like filtered classification search or direct patent number lookup could enhance completeness.

Available Tools

3 tools
get_company_patentsBInspect

Get all patents assigned to a specific company, sorted by most recent.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of results (max 50)
companyYesCompany/assignee name (exact match)
Behavior2/5

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

With no annotations provided, the description carries full burden but only mentions sorting and exact match. It omits behavioral details like pagination, rate limits, or handling of large result sets. Further transparency is needed.

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 a single, well-structured sentence with no wasted words. It conveys essential information efficiently.

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?

For a simple tool with 2 parameters and no output schema, the description is adequate but incomplete. It lacks usage guidelines and output format details, which could improve completeness.

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% (both parameters have descriptions). The description adds value by specifying sorting order, but does not explain parameter semantics beyond what schema provides. Baseline 3 is appropriate.

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 verb 'Get', resource 'patents', and scope 'assigned to a specific company, sorted by most recent'. It distinguishes from siblings (get_patent_detail, search_patents) by specifying exact match on company and sorting.

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?

The description does not provide explicit guidance on when to use this tool vs alternatives. It lacks exclusions or caveats (e.g., when not to use, or that it uses exact match). No mention of sibling tools.

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

get_patent_detailAInspect

Get full details for a specific patent including abstract, claims, inventors, and citation data.

ParametersJSON Schema
NameRequiredDescriptionDefault
patent_idYesUSPTO patent number (e.g. "10000000")
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It does not disclose any behavioral traits such as data freshness, authentication requirements, rate limits, or whether the response is a single object or a list. It only says it returns 'full details' without qualification.

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?

Single, front-loaded sentence with no wasted words. The verb 'Get' clearly indicates the action, and the list of included fields is concise yet informative.

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?

Given there is no output schema, the description provides some completeness by listing included fields, but it omits details like return format, pagination, or error handling. For a simple tool with one parameter, it is minimally complete.

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 the schema already documents the 'patent_id' parameter. The description adds no additional semantic meaning beyond what's in the schema, but it does hint at the return content, which indirectly helps understand the parameter's role.

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 tool retrieves full details for a specific patent, listing key fields like abstract, claims, inventors, and citation data. It distinguishes from siblings 'get_company_patents' (which filters by company) and 'search_patents' (which searches by query).

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

Usage Guidelines3/5

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

The description implies use when you have a specific patent ID and need comprehensive details, but it does not explicitly state when to use this tool over siblings or mention any exclusions or alternatives.

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

search_patentsBInspect

Search USPTO patents by keyword, phrase, assignee company, or inventor name using the PatentsView API.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesKeyword or phrase to search in patent title and abstract
limitNoNumber of results (max 25)
assigneeNoFilter by assignee/company name
inventorNoFilter by inventor last name
Behavior2/5

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

With no annotations, the description should disclose behaviors like API source, pagination, or read-only nature. It only names the API but omits rate limits, sorting, error handling, and output format.

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 14-word sentence is extremely concise, front-loaded with the action ('Search USPTO patents'), and contains no redundant information.

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?

The description covers key parameters but lacks details on output format, pagination, or result ordering. Without an output schema, it should hint at return values. It is adequate but not fully complete for a search 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 description coverage is 100%, so baseline is 3. The description adds value by grouping parameters (keyword, assignee, inventor) but does not explain limit or provide additional detail beyond the schema.

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 tool searches USPTO patents by keyword, phrase, assignee, or inventor name using a specific API. It distinguishes from siblings by emphasizing broad search capabilities, unlike get_company_patents or get_patent_detail.

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?

The description provides no explicit guidance on when to use this tool versus alternatives. It does not mention when to use get_company_patents or get_patent_detail, nor does it suggest exclusions or prerequisites.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources