Skip to main content
Glama

web_search

Return 5 current ranked web results with compact source excerpts in a fixed JSON schema. Costs $0.01 USDC via x402.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes

TDQS

A3.6/5.0
Behavior4/5

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

With no annotations, the description carries the transparency burden. It discloses meaningful behavioral facts beyond the schema: the call costs $0.01 USDC via x402, returns exactly 5 results, ranks them, and returns compact source excerpts. It does not cover auth, rate limits, or error cases, but the cost disclosure is notably useful.

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?

Two sentences with no redundancy. The core output contract is front-loaded, and the cost is stated clearly. Every clause earns its place.

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 one-parameter web search tool, the description covers the main things an agent needs: input is a query, output is 5 ranked web results with excerpts, and there is a monetary cost. The absence of an output schema is partially mitigated by mentioning the fixed JSON schema, but exact fields are still unspecified.

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?

There is only one required parameter, 'query', which is already documented in the schema with type, min, max, and required status. The description does not add detail about query formulation, language support, or how results are ranked. This is acceptable for a self-explanatory parameter but does not go beyond the schema.

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?

The description states a specific verb ('Return') and resource ('web results'), and adds useful specificity: 5 results, ranked, current, with compact excerpts in a fixed JSON schema. It does not explicitly differentiate from sibling tools like news_search or product_search, but the general 'web results' scope is clear enough.

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 gives no guidance on when to choose web_search over alternatives such as news_search, company_search, or geographic_search. There is no mention of use cases, exclusions, or conditions that would favor a sibling tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation4/5

Each tool targets a distinct search vertical or action, and the specialized searches (company, geographic, news, product) are clearly separated from the generic web_search. The main ambiguity is between web_search and search_and_read, since both return ranked web results, but search_and_read's content-returning behavior and explicit cost difference make the boundary understandable.

Naming Consistency4/5

Most tools follow a {domain}_search convention (company_search, geographic_search, news_search, product_search, web_search), with read_url, search_and_read, and ma-government-snapshot as readable exceptions. The naming style is not perfectly uniform, but the pattern is clear and predictable overall.

Tool Count5/5

Eight tools is a well-scoped size for a web access gateway, covering general search, vertical searches, and content retrieval without bloat. Each tool has a distinct cost and purpose, and no tool feels redundant enough to remove.

Completeness4/5

The surface covers the core web-access lifecycle: general search, specialized vertical searches, and direct URL reading, including a combined search-and-read operation. A minor gap is the lack of a batch or multi-URL read, but this is not essential for the stated purpose.

Resources