Skip to main content
Glama
imMamdouhaboammar

PyMC Marketing MCP

get_response_curves

Retrieve response and saturation curves from a fitted PyMC marketing model, returning sampled curve data instead of raw posterior arrays for direct channel analysis.

Instructions

Return response/saturation information sampled by PyMC-Marketing rather than raw posterior arrays.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

B3.3/5.0
Behavior3/5

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

The description discloses an important behavioral trait: it returns sampled response/saturation information rather than raw posterior arrays. However, with no annotations provided, the description carries the burden and does not mention potential prerequisites, error conditions, or whether any computation is required. The read-only nature is only implied by 'Return.'

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 sentence with no filler and is front-loaded with the action and object. It conveys the key distinction about the output efficiently.

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?

For a one-parameter retrieval tool, the description states the core purpose and output nature, but with no output schema or annotations it leaves the exact return shape, model_id semantics, and relationship to fitted models implicit. It is adequate for selection but not fully self-contained for confident invocation.

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% and the description does not mention model_id or how it selects the model. The parameter name 'Model Id' is somewhat self-explanatory, but the description adds no meaning beyond what the schema already trivially provides.

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?

The description uses a specific verb and resource: 'Return response/saturation information sampled by PyMC-Marketing rather than raw posterior arrays.' It clearly conveys what the tool computes and adds a distinguishing qualifier about the output. It does not explicitly differentiate from sibling tools such as get_posterior_plots, but the core purpose is unambiguous.

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

Usage Guidelines3/5

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

The phrase 'rather than raw posterior arrays' implies when this tool is appropriate, but it does not name alternatives or state explicit conditions for selecting this tool over siblings. Usage context is present only by implication.

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