Skip to main content
Glama

Get space

get_space
Read-only

Retrieve a space's metadata (id, name, slug) by its ID. Use this read-only tool to get the name or slug when you already have the space ID.

Instructions

Fetch one space's metadata (id, name, slug) by id. Read-only. Use when you already hold a space_id and just need its name/slug; to discover spaces use list_spaces, to list its pages use list_pages.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesspace id

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
spaceYes
owner_orgNo
page_countYes
member_countYes
owner_handleNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description's 'Read-only' note confirms this. The description adds value by specifying the exact return fields (id, name, slug), which may not be fully covered by the output schema. No contradiction with annotations.

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, each serving a distinct purpose: action, read-only note, usage guidance. No redundant information. Front-loaded with the key action.

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 read-only tool with one parameter and an existing output schema, the description covers all necessary aspects: purpose, usage context, and return values. No gaps.

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% with the parameter 'id' described as 'space id'. The description adds 'by id' but does not provide additional semantics or format details beyond the schema. Baseline 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 ('fetch one space's metadata') and the resource ('space'), specifying the exact fields returned (id, name, slug). It differentiates from siblings like list_spaces and list_pages, which are mentioned as alternatives for discovery and listing.

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

Usage Guidelines5/5

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

Explicitly states when to use ('when you already hold a space_id and just need its name/slug') and when not to ('to discover spaces use list_spaces, to list its pages use list_pages'), providing clear guidance on context and alternatives.

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