Skip to main content
Glama

get_space

Read-only

Fetch a space's details by ID to see editor and member counts plus recent proposals, helping you evaluate its composition and current activity.

Instructions

Get details of a single space by ID, including editor/member counts and recent proposals.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSpace ID (dashless hex)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.0

TDQS

A4.2/5.0
Behavior4/5

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

The readOnlyHint annotation already signals a safe read operation, and the description complements it by disclosing what the response contains: editor/member counts and recent proposals. Since there is no output schema, this extra behavioral detail is valuable, though it does not enumerate all possible returned fields.

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, front-loaded sentence with no filler. It states the core operation first and then appends meaningful specifics about the return payload.

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 simple one-parameter, read-only retrieval tool, the description covers the essential expectations: what resource is being fetched and what notable data will be included. It lacks an exhaustive return schema, but the absence of an output schema is partially mitigated by the listed return contents.

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?

Schema coverage is 100%, and the single parameter 'id' is already described as 'Space ID (dashless hex)'. The description adds no additional meaning beyond what the schema provides, 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.

Purpose5/5

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

The description clearly states the action ('Get details') and resource ('a single space by ID'), and it names specific return contents: editor/member counts and recent proposals. This distinguishes it from sibling tools like list_spaces (which lists spaces) and get_entity/get_type (which target other resource types).

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 clear context for when to use the tool: when the agent needs details about one specific space, identified by ID, including counts and proposals. It does not explicitly mention excluded alternatives or when-not-to-use conditions, but the single-space framing naturally separates it from list-oriented siblings.

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