Skip to main content
Glama

drive_search

Semantic search across your org's artifacts in AgentDrive. Returns the top-N most relevant files. Use this BEFORE writing similar artifacts to avoid duplication and surface prior context.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query
top_kNoMax hits to return (default 10, max 50)
filterNo
workspace_idNoScope to a single workspace; omit for org-wide search

TDQS

A4.2/5.0
Behavior4/5

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

Without annotations, the description carries full burden. It properly indicates the tool is read-only (semantic search) and describes output as top-N files. It could be more explicit about being non-destructive, but the behavior is sufficiently implied.

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, front-loaded with verb and resource, no fluff. Every sentence earns its place with purpose and usage advice.

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 purpose and usage context, but with no output schema, it omits return structure details (e.g., file metadata). For a search tool with nested parameters, this leaves some ambiguity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 75% (query, top_k, workspace_id described), but the filter object's nested properties lack descriptions in both schema and tool description. The description adds no parameter-specific value beyond 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 performs semantic search over org artifacts (AgentDrive), returning top-N relevant files. This verb+resource specification differentiates it from siblings like drive_list or drive_read.

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 advises using this tool 'BEFORE writing similar artifacts to avoid duplication and surface prior context,' providing clear when-to-use guidance.

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.6/5.0
Disambiguation4/5

Most tools have clear distinct purposes, but drive_context, drive_recall, and drive_search have overlapping retrieval semantics that could confuse an agent. drive_activity and drive_log_run also have potential ambiguity.

Naming Consistency5/5

All tools follow a consistent 'drive_verb_noun' pattern with clear verbs (e.g., drive_list, drive_write, drive_delete). No mixing of conventions.

Tool Count4/5

20 tools is a reasonable number for a comprehensive workspace management server, covering file operations, collaboration, sandbox, and context retrieval. Not excessive, but slightly above the ideal 3-15 range.

Completeness4/5

The tool surface covers core CRUD for files, comments, sharing, search, roles, and sandbox features. Missing some minor operations like updating comments or renaming files, but no critical gaps for typical workflows.