Skip to main content
Glama
rodascaar

ProfitPilot MCP Server

by rodascaar

profitpilot_analyze

Run a structured business analysis pipeline to resolve e-commerce problems using data, revenue, financial, competitor, customer, and risk insights via chain-of-thought reasoning.

Instructions

Ejecuta el pipeline completo de ProfitPilot usando Chain of Thought.

Este servidor NO usa LLMs externos. Genera prompts estructurados que el cliente MCP debe ejecutar con su propio modelo.

El flujo es:

  1. Cliente llama a profitpilot_analyze con el problema

  2. Servidor genera un prompt de razonamiento

  3. Cliente ejecuta el prompt con su modelo

  4. Cliente llama a profitpilot_continue con la respuesta

  5. Se repite hasta completar el análisis

ProfitPilot combina agentes especializados en:

  • Data Intelligence (análisis de métricas y anomalías)

  • Revenue & Margin (LTV, CLV, márgenes por canal)

  • Financial Modeling (cash flow, working capital, payback)

  • Competitor Intelligence (precios, tendencias del mercado)

  • Customer Insight (comportamiento, churn prediction)

  • Operations & Inventory (forecasting, stock levels)

  • Scenario & Risk Engine (simulación de escenarios)

  • Execution Agent (acciones automáticas)

  • Global Constraint Strategist (cuellos de botella globales)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleNoRol de negocio (ceo, cmo, ecommerce, operations, growth, cfo)cmo
problemYesEl problema o pregunta de negocio a resolver
verboseNoMostrar progreso detallado del pipeline
sessionIdNoID de sesión único (opcional, se genera uno si no se proporciona)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It clearly reveals key traits: the server does not call external LLMs, it produces structured prompts for the client to execute, and the analysis is multi-turn. This materially prevents an agent from assuming the tool runs a local model or returns a final answer immediately.

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?

The description is longer than average but earned: the flow list and agent domains are organized and relevant. The main behavioral facts are front-loaded, and the detail supports correct multi-step usage rather than padding.

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?

Given no output schema, the description adequately conveys what the first call produces (a reasoning prompt) and outlines the full interaction pattern. It does not detail error or session lifecycle behavior, but for an initial invocation tool the guidance is 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 coverage is 100%, so the schema already documents role, problem, verbose, and sessionId. The description adds little beyond tying 'problem' to the flow and noting the client later sends a response; this is marginal but acceptable given the schema's completeness.

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 opens with a concrete verb and resource: it executes the full ProfitPilot pipeline using Chain of Thought. It then names profitpilot_continue in the numbered flow, making the division of labor between the two sibling tools explicit. Even though 'completo' is slightly broad, the flow makes clear this is the entry point for the iterative analysis.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The numbered flow states exactly when analyze should be called (with the problem) and when continue should be called (with the model's response), and notes the cycle repeats until complete. It does not explicitly say when to use status or reset instead, but the core when-to-use guidance is present and unambiguous.

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