Skip to main content
Glama
theonlytruebigmac

N-central MCP Server

run_report

Read-only

Run a reviewed read-only N-central report to retrieve patch-comparison or device-filter data, with pagination, row filtering, sorting, and JSON/CSV output.

Instructions

Run one reviewed read-only report adapter; arbitrary REST methods or paths are not accepted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
allNoFetch bounded pages, up to 20 pages or 10,000 records.
formatNoRequested presentation format.
selectNoN-central FIQL/RSQL row filter.
sortByNoField used to sort results.
pageSizeNoPage size from 1-1000; -1 is used only on documented operations.
reportIdNoRequired for a completed patch-comparison report.
sortOrderNoSort direction.
viewScopeNoOptional device-filter view scope.
pageNumberNoPage number, starting at 1.
reportTypeYesReviewed report adapter.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes
metaYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv3.0.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds the constraint that only reviewed adapters are accepted, which is useful context, but does not disclose other behaviors like output format or error handling. It does not contradict 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?

The description is a single, focused sentence that front-loads the core purpose and includes a key limitation. No wasted words, and the structure is efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having an output schema and annotations, the tool has 10 parameters and two report types. The description gives no guidance on selecting reportType or understanding the tool's scope, leaving the agent to rely entirely on the schema. For this complexity, the description is too sparse to be fully self-sufficient.

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%, so all parameters are documented. The description does not add any parameter-specific meaning beyond the schema, which is acceptable given the baseline of 3 for full schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool runs a reviewed read-only report adapter, which is a specific verb and resource. It distinguishes itself from siblings by focusing on reports, but does not fully define what a report adapter is. The constraint about arbitrary REST methods adds clarity.

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?

No explicit guidance on when to use this tool versus alternatives. It mentions that arbitrary REST methods or paths are not accepted, but does not suggest what to use instead. The description lacks context on prerequisites or situations where this tool is appropriate.

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