Skip to main content
Glama
rodascaar

ProfitPilot MCP Server

by rodascaar

profitpilot_status

Retrieve the current status of a reasoning session to track its progress and determine whether it has completed or is still running.

Instructions

Obtiene el estado actual de una sesión de razonamiento.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sessionIdYesID de sesión

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It conveys a read-only behavior by saying 'obtiene' (gets) and 'estado actual' (current status), which implies it does not modify the session. However, it does not disclose return format, whether it can be polled, or error behavior, so transparency is partial.

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 concise sentence that immediately states the tool's purpose. No filler or redundant material is present.

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?

The tool is simple with one parameter, but without an output schema or annotations, the description leaves out what the current status looks like, possible status values, and any usage caveats. It is minimally viable but not fully self-sufficient.

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%: sessionId is documented as 'ID de sesón'. The tool description adds no additional meaning about the parameter, such as format, constraints, or examples, so it is adequate but not enriched.

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 and resource: 'Obtiene el estado actual de una sesión de razonamiento' (gets the current status of a reasoning session). This clearly distinguishes it from siblings like analyze, continue, and reset, which imply different operations.

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?

There is no explicit guidance about when to use this tool versus alternatives such as analyze, continue, or reset. The only clue is the tool name and the word 'status', which implies reading session status, but no conditions or exclusions are provided.

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