Skip to main content
Glama

Game Dev Outsourcing Directory

Fetch a directory document

fetch
Read-onlyIdempotent

Retrieve the full text of one directory document by the id returned from "search", for quoting and citation. Ids look like company/, answer/, ranking/, or "statistics". Always call "search" first to get an id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesA document id from a "search" result, for example "company/room-8-studio".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
urlYesCanonical page URL for citation.
textYesThe full text of the document.
titleYes
metadataNoExtra fields about the document.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already cover read-only and non-destructive behavior. The description adds value by stating it retrieves 'full text' and is intended 'for quoting and citation,' which is useful context beyond the annotations. No contradictions with annotations.

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 concise sentences, front-loaded with the core action and purpose. Every phrase earns its place: id format and prerequisite are stated efficiently.

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 tool is simple (one parameter), has a rich schema, output schema, and helpful annotations. The description fully covers what, why, and the prerequisite (search first), so it is complete for this complexity level.

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

Parameters4/5

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

Schema coverage is 100%, but the description still enriches the parameter meaning by showing id format examples ('company/<slug>', etc.) and reinforcing that the id comes from a search result. This goes beyond the schema's basic description.

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 verb ('Retrieve'), the resource ('directory document'), and the specific purpose ('for quoting and citation'). It also explains the id format and explicitly ties the tool to search results, distinguishing it from sibling getter tools that are type-specific.

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

Usage Guidelines4/5

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

The description gives explicit usage context: 'Always call search first to get an id.' This tells the agent when to use this tool. However, it does not explicitly mention alternatives (e.g., get_answer, get_ranking) or when not to use it, so it falls short of a 5.

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

Tools are mostly distinct: search vs search_studios is clear, and list_answers/list_rankings getters are well-separated. However, fetch overlaps somewhat with get_answer/get_ranking/get_studio in that it can retrieve the same underlying documents, though the descriptions clarify that fetch is for raw text from search results while the getters are structured.

Naming Consistency4/5

Most tools follow a verb_noun pattern with consistent verbs (get_, list_, search_), but fetch and estimate_project_cost deviate slightly. The mixed verbs are still intuitive and not chaotic, so the set is easy to navigate.

Tool Count5/5

10 tools is well-scoped for a directory server, covering search, retrieval, listing, statistics, and cost estimation without redundancy or bloat. Each tool serves a clear purpose.

Completeness5/5

The surface fully covers the directory's read-only domain: searching studios and general documents, retrieving studio details and full text, listing and fetching buyer guides and rankings, plus directory statistics and cost estimation. No obvious gaps or dead ends.

Resources