Skip to main content
Glama

list_entities

Read-only

Retrieve entities from the Geo knowledge graph using filters for space, type, or name, with pagination to control result size.

Instructions

List entities with optional filters for space, type, and name. Supports pagination.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoCase-insensitive name substring filter
firstNoMax results (default 20)
offsetNoOffset for pagination (default 0)
typeIdsNoFilter by type IDs (dashless hex)
spaceIdsNoFilter by space IDs (dashless hex)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.0

TDQS

A3.6/5.0
Behavior3/5

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

The readOnlyHint annotation already covers the safety profile, and the description adds only that filters are optional and pagination is supported, which is already present in the schema. It does not disclose additional behavioral traits such as result ordering, default return format, or how filters combine, though it also 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?

The description is a single sentence that front-loads the core action ('List entities'), then the optional filters, then pagination. There is no fluff or redundant phrasing; every phrase earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only listing tool with no output schema, the description covers the primary functional dimensions: filtering and pagination. It does not mention result shape or ordering, but given the readOnly annotation and rich parameter schema, the description is sufficiently complete for an agent to call it 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?

With 100% schema description coverage, the schema fully documents all five parameters. The description restates the filter dimensions (space, type, name) and pagination but adds no new semantic detail, so the baseline score of 3 is appropriate.

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 clear verb-resource pair ('List entities') and specifies optional filters for space, type, and name plus pagination, providing a concrete sense of scope. However, it does not explicitly distinguish itself from sibling tools like search_entities, which may perform similar filtering, so it falls short of a 5.

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

Usage Guidelines3/5

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

The description implies its use case through the mention of optional filters and pagination, but it gives no explicit guidance on when to choose this tool over alternatives such as search_entities or get_entity. There is no 'when to use' or 'when not to use' framing, making the usage context only implicit.

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