Skip to main content
Glama

nifi_get_processor

Read-onlyIdempotent

Fetch full details for a single NiFi processor by ID, including properties, scheduling, relationships, and validation errors. Use it to inspect configuration or troubleshoot before making changes.

Instructions

One processor in full: properties, scheduling, relationships, validation errors.

Backed by GET /processors/{id}. Sensitive property values are masked.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
verboseNo
processor_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already declare readOnly/idempotent/non-destructive, but the description adds real context beyond them: it maps to the underlying GET /processors/{id} endpoint and discloses that sensitive property values are masked. That masking note is a genuinely useful behavioral trait not derivable from the 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?

Two short sentences, front-loaded with the payload summary and followed by the endpoint/masking note. Zero filler; every clause carries information.

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?

An output schema exists, so return values need not be spelled out, and the description still summarizes the returned content. For a read-only single-resource fetch it is essentially complete, with only the 'verbose' parameter left unexplained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description says nothing about either parameter. processor_id is inferable from the name, but 'verbose' is completely undocumented in both the schema and the description, so the description fails to compensate for the coverage gap.

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?

States a specific verb+resource ('One processor in full') and enumerates what the response contains (properties, scheduling, relationships, validation errors). The singular 'One processor' implicitly distinguishes it from the sibling nifi_list_processors, but no alternative is named explicitly.

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?

Usage is only implied: needing full detail on a single processor with a known id. There is no explicit when-to-use or when-not-to-use guidance, nor a pointer to nifi_list_processors or nifi_search for discovering processors first.

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