Skip to main content
Glama
arman-tech

spatial-memory-mcp

by arman-tech

namespaces

List all namespaces with memory counts and date ranges to assess data distribution and recency.

Instructions

List all namespaces with memory counts and date ranges.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
_agent_idNoOptional agent identifier for request tracing and per-agent rate limiting.
include_statsNoInclude memory counts and date ranges per namespace

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.11.4

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It implies a read-only operation via 'List' and states the output scope, but it does not mention authentication, rate limits, pagination, or whether include_stats=false changes the output shape beyond what the schema states.

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 one concise sentence with no filler. The core action and output details are front-loaded, making it easy to scan.

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?

For a simple read-only list tool, the core behavior is covered. However, with no output schema and no behavioral caveats, an agent must infer the exact response shape and whether 'all' namespaces implies pagination or performance concerns.

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?

Both parameters are fully described in the schema with defaults and explanations, so the description does not need to add much. The phrase 'with memory counts and date ranges' echoes the include_stats parameter but does not meaningfully extend the schema's meaning.

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 clear verb ('List') and a specific resource ('namespaces'), and specifies the returned information ('memory counts and date ranges'). This makes it easy to distinguish from mutation-focused siblings like delete_namespace and rename_namespace.

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?

The description gives no guidance on when to use this tool versus alternatives, nor does it mention exclusions such as when to set include_stats to false. It is a straightforward command statement without usage context.

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