Skip to main content
Glama
osviel91

geo-osiris-mcp

by osviel91

list_features

Retrieve compact feature summaries for a geospatial layer, with optional status filtering to include or exclude archived features.

Instructions

List compact feature summaries for a layer.

Omitting status preserves the Geo Hub default (non-archived features).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
cursorNo
statusNo
layer_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It usefully discloses that omitting status preserves the non-archived default, adding value beyond the schema. However, it does not mention pagination behavior, read-only guarantees, or what 'compact' summaries contain.

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?

The description is two sentences with no wasted words. It front-loads the primary action and then adds the most important behavioral nuance about status, so every sentence earns its place.

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 output schema covers return values, which reduces the burden. Still, with no annotations and minimal schema descriptions, the description does not fully explain pagination via cursor/limit or how this tool relates to neighboring feature tools. It is adequate for basic invocation but not fully complete.

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 0%, so the description must compensate for parameter meaning. It does explain the status default, which is helpful, but it leaves layer_id, limit, and cursor semantically unexplained beyond their names and schema types.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource: 'List compact feature summaries for a layer.' This clearly identifies what the tool does and hints at a distinction from more detailed feature retrieval, though it does not explicitly name siblings like get_feature.

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

Usage Guidelines2/5

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

There is no guidance about when to use this tool versus alternatives such as get_feature or inspect_layer. The only usage-related note is about omitting status to preserve the Geo Hub default, which concerns parameter behavior rather than tool selection.

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