Skip to main content
Glama
gabyic

AgentDock MCP Harness

by gabyic

process.output

Read-only

Read new stdout/stderr output from a running process via a pull cursor, providing incremental access to logs as they are produced.

Instructions

Read process stdout/stderr incrementally from a pull cursor.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cursorNo
task_idYes
process_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0-dev.2

TDQS

A3.5/5.0
Behavior4/5

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

The readOnlyHint already signals a safe read, and the description adds the useful behavioral trait that output is read incrementally via a pull cursor rather than returned as a single snapshot. It does not contradict the annotation, though cursor/EOF mechanics are left unspecified.

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, tightly worded sentence with the verb and resource front-loaded. There is no filler or redundant detail.

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?

For a tool with no output schema and no parameter descriptions, the definition is thin: an agent still does not know what a pull cursor returns, how to start or advance it, or what end-of-stream/empty output looks like. The readOnlyHint covers safety but not invocation details.

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%, so the description needs to compensate. It only ties the 'pull cursor' idea to the cursor concept and generally references process output, but it never explains the roles of task_id and process_id or how the cursor is initialized and advanced.

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 names a specific verb ('Read'), a specific resource ('process stdout/stderr'), and a distinguishing mechanism ('incrementally from a pull cursor'). This makes it easy to separate from siblings like process.status or process.start.

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?

The description gives no explicit guidance about when to use this tool instead of alternatives such as process.status. The incremental pull-cursor phrasing implies a streaming use case, but no when/when-not conditions or named alternatives are provided.

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