Skip to main content
Glama

DaedalMap UN Sustainable Development Goals

Get Pack

get_pack
Read-only

Free discovery. Returns detailed metadata, coverage, freshness, preferred canonical tool guidance, and first-query examples for one pack. Call this before querying a new pack so you can see time shape, coverage limits, and the paste-ready first query.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pack_idYesPack identifier from get_catalog. Newly catalog-admitted packs require no MCP schema change.

TDQS

A4.3/5.0
Behavior4/5

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

With readOnlyHint=true already covering the safety profile, the description adds value by describing the read action as 'Free discovery' and enumerating the behavioral outputs: coverage, freshness, tool guidance, and example queries. It does not contradict the annotation.

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?

Three sentences deliver the tool's purpose, return contents, and usage sequence with no filler. The most important information is front-loaded ('Free discovery') and every sentence 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?

For a simple one-parameter, read-only tool with no output schema, the description sufficiently enumerates what the agent will receive and when to call it. Combined with the schema, 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?

The single parameter pack_id is fully documented in the schema, including its source from get_catalog, so the schema carries the semantic burden. The description adds no parameter-specific meaning, making the baseline 3 appropriate.

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 and object—'Returns detailed metadata, coverage, freshness, preferred canonical tool guidance, and first-query examples for one pack'—which makes the resource and scope unmistakable. It also positions the tool as a discovery/pre-query step rather than a data-returning tool, distinguishing it from query_dataset.

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 clear contextual timing: 'Call this before querying a new pack so you can see time shape, coverage limits, and the paste-ready first query.' It does not explicitly name sibling tools or state when not to use it, but the intended workflow is evident.

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.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: get_catalog discovers available packs, get_pack provides metadata for a specific pack, get_tool_help gives usage guidance for a tool, and query_dataset executes queries. There is no overlap or ambiguity in their roles.

Naming Consistency3/5

Three tools follow a 'get_*' pattern (get_catalog, get_pack, get_tool_help), but query_dataset breaks the pattern with a different verb. The objects vary (catalog, pack, tool_help, dataset) without a strict verb_noun structure, but the names remain understandable and readable.

Tool Count5/5

With 4 tools, the server is well-scoped for a data access/query facade. Each tool covers a necessary step in the workflow (discover, inspect, get help, query) without bloat, fitting comfortably in the ideal 3-15 range.

Completeness4/5

The tool surface covers the full user journey for a data query server: discovery (get_catalog), metadata inspection (get_pack), tool guidance (get_tool_help), and actual querying (query_dataset). Minor gaps exist, such as no explicit way to list all available tools without using tools/list, but that is an MCP protocol concern rather than a domain coverage gap.