Skip to main content
Glama
batosai

Adonis MCP Documentation Server

by batosai

Search in Documentation

search_in_docs
Read-onlyIdempotent

Search all documentation files for a keyword or phrase to return matching sections. Find the relevant information you need without manually browsing every file.

Instructions

Search for a keyword or phrase across all documentation files and return matching sections

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesThe search query (keyword or phrase to find in documentation)
caseSensitiveNoWhether the search should be case-sensitive (default: false)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, covering the safety profile. The description adds useful scope ('across all documentation files') and result behavior ('return matching sections'), but does not detail edge cases, matching semantics, or result formatting.

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 sentence that front-loads the action and outcome with no wasted words. Every element 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 simple, read-only, two-parameter search tool, the description is functionally complete. The absence of an output schema is partially mitigated by 'return matching sections', though an explicit result format would make it fully 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 description coverage is 100%, so both query and caseSensitive are already documented in the schema. The description only restates the general notion of 'keyword or phrase' without adding extra meaning beyond the structured definition.

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 uses a specific verb ('Search') and resource ('all documentation files'), and clearly states the outcome: 'return matching sections'. This distinguishes it naturally from siblings like list_documentation and extract_code_examples.

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 conveys when to use the tool: when you need to find a keyword or phrase in documentation. However, it does not explicitly mention alternatives or when not to use it, leaving the comparison to sibling tools implicit.

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