Skip to main content
Glama

search_docs

Read-only

Search AgendaForge public marketing and documentation content. Returns no account or private event data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of ranked results to return.
queryYesWords or a natural language phrase to search for.

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so the safety profile is covered. The description adds meaningful behavioral scope: it explicitly excludes account and private event data, which is useful context beyond the annotations and helps an agent set expectations for results.

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 filler. The core action and scope come first, and the security/data-scope caveat is stated immediately after, making it easy to parse.

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?

This is a simple search tool with only two parameters, no output schema, and no nested objects. The description covers what is searched and what is excluded, which is sufficient for most invocation contexts. It does not explain how it differs from fetch_doc, but that is a minor gap given the low complexity.

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%, with 'query' and 'limit' both described in the schema. The description does not add additional parameter-level detail, so the schema carries the burden. Baseline 3 is appropriate.

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 ('Search') and resource ('AgendaForge public marketing and documentation content'), which clearly identifies what the tool operates on. It does not explicitly name the sibling tool fetch_doc, but the scope is precise enough that an agent can tell search_docs apart from a doc-fetching tool.

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 this is for searching public content rather than retrieving a known document, but it does not explicitly state when to use search_docs versus fetch_doc or mention any exclusion criteria. The usage context is inferable from the verb and scope, but not spelled out.

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

A4/5.0
Disambiguation5/5

fetch_doc and search_docs have clearly distinct purposes: one retrieves a specific document by route, the other searches across content. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tools follow the same verb_noun pattern with snake_case formatting. The singular 'doc' versus plural 'docs' is a minor and natural variation that does not harm consistency.

Tool Count3/5

With only two tools, the server sits at the thin end of the range. The scope is narrow enough to support this, but it still feels minimal compared to typical tool sets.

Completeness4/5

Fetching a known document and searching across docs cover the core workflows of a documentation server. A listing or index tool could be considered a minor gap, but search largely compensates.

Resources