Skip to main content
Glama
idss-mesa

neon-mcp

by idss-mesa

Check neon-mcp status

neon_ping
Read-onlyIdempotent

Check server liveness and capability status: verify NEON API reachability, token availability, download access, and cache/rate-limit headroom before searching for data products.

Instructions

Liveness and capability report: server version and protocol, whether a NEON API token is available (it unlocks data files and sample views), whether downloads are enabled, catalog warmth, cache and rate-limit headroom. With check_api=true it makes one ~1 KB NEON request. Never reveals the token. Next: call neon_search_products to find a data product.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
check_apiNoAlso make one tiny NEON request (~1 KB) to test reachability and read rate-limit headers.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
apiNo
pongNook
cacheYes
notesNo
sourceNo
catalogYes
versionYes
resolvedNo
nextStepsNo
rateLimitNo
transportYes
apiBaseUrlYes
graphqlUrlYes
downloadDirNo
tokenSourceYes
protocolVersionYes
tokenConfiguredYes
downloadsEnabledYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds meaningful behavior beyond that: the conditional network request when check_api=true, the explicit statement that the token is never revealed, and the linkage of token availability to data-file/sample access.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose and remains compact while covering capabilities, the conditional API check, a security guarantee, and a next-step suggestion. A few terms like 'catalog warmth' could be seen as jargon, but every sentence contributes useful information.

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 low-complexity tool with one optional parameter, a rich output schema, and safety annotations already present, the description covers everything needed: purpose, conditional behavior, security posture, and an orientation to the next appropriate tool. Nothing essential is missing.

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 description coverage is 100%, and the check_api parameter is already well documented in the schema with its default, size, and purpose. The tool description largely repeats the schema's parameter explanation rather than adding materially new semantics, 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?

The description clearly identifies this as a 'Liveness and capability report' for the neon-mcp server, enumerating specific items like server version, token availability, download status, and rate-limit headroom. It is unambiguously distinct from the data-access siblings and even directs to neon_search_products for finding a data product.

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 establishes a clear context: this is an initial status/capability check, and it suggests calling neon_search_products next. It also explains when check_api=true is useful (testing reachability and rate-limit headers). It does not explicitly state when not to use it, but the router hint and report framing make the intended usage clear.

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