Skip to main content
Glama
rsc-dev

alpha-mcp

by rsc-dev

get_row

Retrieves a single row from a specified table by matching a key value, returning the row data or a not-found indicator.

Instructions

Fetch one row from a table by key. Returns {'found': false} when there is no match.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesKey value, e.g. a Yahoo symbol like 'NVDA' or a ThesisCode
tableYesTable name, as returned by list_tables
key_columnNoColumn to match, e.g. 'Yahoo' or 'ThesisCode'; defaults to the table's primary key (usually the integer ID)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full behavioral burden. It discloses the not-found return shape ({'found': false}), which is valuable. It does not mention errors or authentication, but for a simple read operation this is reasonably transparent given the existence of an output schema.

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 sentence with no unnecessary words. The core action is front-loaded, and the behavioral note about not-found is placed at the end, keeping the description lean and scannable.

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?

With an output schema present and parameters fully documented, the description covers the key behavioral case (not-found). Missing explicit usage guidance is a minor gap, but overall it is adequate for a simple fetch tool.

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%, so all parameters are described in the schema. The description adds minimal value beyond the schema, only restating the concept of a key. Per the baseline rule for high coverage, a 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?

States the verb 'Fetch', the resource 'one row from a table by key', and implies a single-row lookup that distinguishes it from siblings like find_rows (multiple rows) and list_tables (listing tables). The description is specific and unambiguous.

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?

Does not explicitly state when to use this tool versus alternatives like find_rows or list_tables. The purpose implies single-key lookups, but there is no mention of exclusions or the conditions under which another tool should be chosen.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rsc-dev/alpha-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server