Skip to main content
Glama
KaterinaProtivenskiy

Productive.io MCP Server

Get Deal

productive_get_deal

Retrieve a single Productive.io deal by ID with full financial details, including related company, project, and responsible resources.

Instructions

Get a single deal/budget by ID from Productive.io with full financial details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe deal/budget ID
includeNoComma-separated related resources to include (e.g. 'company,project,responsible')

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, so the description carries the full behavioral burden. 'Get' implies a read-only operation and 'full financial details' hints at return content, but there is no mention of auth/permission requirements, error behavior for missing or inaccessible deals, or response shape. For a tool with zero annotation coverage, this is thin.

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?

A single front-loaded sentence with no wasted words; the resource and scoping constraint come first.

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

Completeness3/5

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

There is no output schema and no annotations, so the description is the only place to convey return behavior; it gestures at this with 'full financial details' but does not enumerate what is returned. Adequate for a simple two-parameter getter, but not fully complete.

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 both the id and include parameters are already documented in the schema (including the example include values). The description adds nothing beyond the schema, which is the expected baseline when the schema does the heavy lifting.

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 (Get) and resource (deal/budget) and scopes it to a single record by ID, which distinguishes it from productive_list_deals. It does not, however, explicitly name sibling getters or note that it is the single-record counterpart to the list tool.

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 says what it fetches but gives no guidance on when to use it versus productive_list_deals or other read tools, and no prerequisites are mentioned. Usage is only implied by 'single...by ID'.

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