Skip to main content
Glama
cmssy-io

@cmssy/mcp-server

Official
by cmssy-io

get_record

Fetch a single CMS record by its ID to view all field values and status. Use when you need complete details for one entry from your data model.

Instructions

Get one record (entry) of a data model by its id, including all its field values and status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
recordIdNoThe record's id (from list_records)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.73.1

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden. It adds useful detail about what is returned ('all its field values and status') but does not cover error behavior (e.g., missing record), permissions, or confirm it is read-only. The 'Get' verb implies non-mutating behavior.

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?

A single efficient sentence that states the action, scope, and returned content. No filler or redundancy.

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 single-parameter read tool, the description plus schema are nearly sufficient. Missing error/not-found behavior is minor, and no output schema exists, but the description adequately conveys the retrieval scope and result.

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 parameter description already explains recordId comes from list_records. The main description adds 'by its id' but no additional meaning beyond the schema, so the baseline 3 applies.

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?

States a specific verb ('Get'), a specific resource ('one record of a data model'), and the retrieval key ('by its id'). This clearly distinguishes it from list_records (plural) and other get_* siblings.

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 usage for fetching a single record when an ID is known, and the schema parameter description says the ID comes from list_records. However, it does not explicitly contrast it with list_records or mention when not to use it.

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