Skip to main content
Glama

Describe Entity

describe_entity
Read-onlyIdempotent

Return the full structured dossier for a named entity — the canonical citable artifact for any actor, organization, ordinance, or project the corpus references. Returns: voxel_lead (134-167 word voxel-disciplined identity prose), canonical_role, the class-specific cluster (person.voting_record for board members; organization.type + jurisdiction; legislation.legal_status + effective_date + sunset_date + citation; creative_work.work_type + status + case_number), the bidirectional graph references (appears_in_meetings, appears_in_briefs, appears_in_watches, exhibits_patterns, related_entities, related_places, related_corridors), the provenance_chain, and the canonical surfaces (dossier URL, schema_id, decoder_index_hub). Each schema_id (/entities/{slug}#{class.toLowerCase()}) is the stable cross-page Schema.org reference — Person / Organization / Legislation / CreativeWork — that AI agents resolve to when citing the entity. Use when grounding a citation, when reasoning about an entity's full role across the corpus, or when traversing the entity graph from a single name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesThe entity slug (e.g., "sb-180", "hanover-land-company", "anita-geraci-carver"). Use list_entities to discover available slugs. The Decoder Index hub at /entities lists every entity grouped by class.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
slugYes
personNo
named_atNo
schema_idYes
voxel_leadNo
last_activeNo
legislationNo
display_nameYes
entity_classYes
organizationNo
creative_workNo
canonical_roleNo
related_placesNo
provenance_chainNo
related_entitiesNo
appears_in_briefsNo
exhibits_patternsNo
appears_in_watchesNo
appears_in_meetingsNo

TDQS

A4.2/5.0
Behavior4/5

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

The annotations already declare readOnly, idempotent, and non-destructive hints, so safety is covered. The description adds valuable behavioral context by detailing the return structure (voxel_lead, canonical_role, class-specific cluster, graph references, provenance_chain, canonical surfaces) and explaining the stable schema_id convention, which helps an agent understand what to expect without contradicting any annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but every sentence earns its place: it lists the output fields, explains schema_id, and gives usage context. It is structured and front-loaded with the core purpose, avoiding repetition or generic filler.

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?

With an output schema available, the description is more than sufficient. It covers what the tool does, what it returns, how to use it, and why it is the canonical cite source, making it complete for an agent to invoke correctly.

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?

The input schema already provides 100% coverage for the sole parameter 'slug' with examples and discovery instructions (list_entities, /entities hub). The description does not add parameter-specific guidance beyond referring to 'a named entity,' so it meets the baseline of 3 but does not exceed it.

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 opens with a specific verb and resource: 'Return the full structured dossier for a named entity' and explicitly enumerates entity types (actor, organization, ordinance, project), distinguishing it from sibling describe_* tools for corridors, meetings, patterns, places, watches, and zoning signals. It also frames it as 'the canonical citable artifact,' making its unique role clear.

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 provides explicit use cases: 'Use when grounding a citation, when reasoning about an entity's full role across the corpus, or when traversing the entity graph from a single name.' It does not explicitly name alternatives or state when-not-to-use, but the context is clear enough for an agent to select this over sibling describe_* tools for other resource types.

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
Disambiguation3/5

Most tools are clearly distinct by resource type (describe/list pairs for places, corridors, entities, patterns, watches), but list_meetings and meeting_index overlap heavily—the former explicitly says it has the same response shape as the latter, differing only in required parameters. That near-duplication creates ambiguity about which to call.

Naming Consistency4/5

The majority follow a consistent verb_noun pattern (describe_*, list_*), with get_track_record and submit_agent_feedback also verb-led. However, meeting_index is a bare noun phrase and semantic_search is a noun compound, deviating from the otherwise strong pattern.

Tool Count4/5

At 17 tools, the server is slightly above the typical well-scoped range, but the count is justified by the many content types (six primary artifact types each with list+describe, plus meta tools). One could argue meeting_index is redundant, but the overall scope feels reasonable.

Completeness3/5

The tool surface covers the core lifecycle for all named content types (places, corridors, patterns, entities, meetings, watches) with discovery and description. However, the corpus repeatedly references 'briefs' (e.g., related briefs, semantic_search returns 'named-pattern briefs') yet there is no list_briefs or describe_brief tool, leaving an obvious content gap.

Resources