Skip to main content
Glama
Pseudogiant-xr

PseudoLife-MCP

Official

document_search

Search only ingested documents in the reference bank to retrieve relevant passages, excluding conversational memories entirely.

Instructions

Search the reference bank only — ingested documents, no conversational memories mixed in. For docs AND memories together, use memory_search.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesNatural-language description of the passage wanted.
top_kNoMax chunks returned.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.15.0
    • addedInput schema / properties / query / description
      Added value: +"Natural-language description of the passage wanted."
    • addedInput schema / properties / top_k / description
      Added value: +"Max chunks returned."
  2. First observedv0.11.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses that the search is scoped to ingested documents and deliberately excludes conversational memories. The verb 'search' also implies a read-only operation, so no hidden side effects are suggested.

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 purpose is front-loaded, and the alternative tool is named in the second sentence. Every word earns its place.

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

Completeness5/5

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

The description fully scopes the tool, names its alternative, and the schema covers both parameters. With an output schema present, return-value details are not required. Nothing essential is missing for correct invocation.

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%, already explaining both query ('Natural-language description of the passage wanted') and top_k ('Max chunks returned'). The description adds no parameter-specific detail, but the schema fully handles that burden.

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 states a specific verb and resource: 'Search the reference bank only' — ingested documents, excluding conversational memories. It clearly distinguishes document_search from memory_search, and the scope is unambiguous.

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

Usage Guidelines5/5

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

The description explicitly tells the agent when to use this tool (docs only) and when to use an alternative ('For docs AND memories together, use memory_search'). This is direct routing with no inference required.

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