Skip to main content
Glama
arimon03

Evaluar MCP Server

by arimon03

process_assign_position

Match a process with a position by supplying process and position IDs, optionally narrowing by agency or department.

Instructions

Assign a position to a process

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agencyIdNoOptional agency ID
processIdYesThe ID of the process
positionIdYesThe ID of the position to assign
departmentIdNoOptional department ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, and the description offers only the bare action. It does not disclose whether the assignment overwrites an existing position, requires specific permissions, or has any side effects. This is the minimum implied mutation with no behavioral detail.

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?

One concise sentence with no filler or repetition, making it efficient and front-loaded. However, the brevity sacrifices important usage and behavioral context, so it is not a fully effective description.

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 annotations and no output schema, this description is too sparse. It omits behavioral consequences and usage context; though the schema covers parameters, the agent lacks details about side effects and when to call it. It is minimally usable but incomplete.

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 four parameters are documented in the input schema. The description adds no parameter-specific meaning beyond the action, matching the baseline of 3 for high schema coverage.

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?

States a specific action—'Assign'—with a clear object ('a position') and recipient ('a process'). This distinguishes it from siblings like process_create and process_launch, which are creation and execution operations, and position_search, which is a lookup.

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 guidance on when to choose this tool over alternatives; no mention of prerequisites, sequencing, or exclusions. The only implied usage is the action itself, leaving the agent to infer when it applies.

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