Skip to main content
Glama
Wasim-Shaikh25

splunk-dashboard-mcp

get_report

Fetch a Splunk report's SPL, schedule, ACL, and full config to inspect or reuse its setup.

Instructions

Get one report (saved search): its SPL, schedule, ACL, and full config.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appNoApp namespace. Default search.
nameYesReport (saved search) name.
ownerNoOwner username. Default any (-).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.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 behavioral disclosure burden; it does communicate that the tool returns a report's configuration rather than just existence. It does not explicitly state read-only behavior, permissions, or behavior when the report is missing, leaving some ambiguity for a tool with no annotation safety hints.

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?

Single sentence with no filler; the key verb and object lead, and the additional content list is compact and informative.

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 read tool with no output schema, the description covers what the agent receives (SPL, schedule, ACL, config). It lacks explicit usage differentiation from list_reports, but the schema fleshes out the parameters and the rest is straightforward.

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 the parameter descriptions already explain app, name, and owner. The tool description adds no parameter-level meaning beyond labeling the target as a saved search, so the baseline of 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 states a specific verb (Get) and resource (one report), disambiguates 'report' as a saved search, and enumerates the returned config (SPL, schedule, ACL, full config). This clearly distinguishes it from siblings like list_reports and create_report.

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 phrase 'one report' implies use with list_reports for enumeration, but there is no explicit when-to-use guidance or mention of alternatives. An agent must infer that this is the detail-fetch variant based on sibling names.

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