Skip to main content
Glama

intentweave-mcp

estimate_cost

Estimate run cost before campaign launch (model-based estimate, not billable).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
intentYes
verticalYes
access_tokenNo
tenant_api_keyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

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 burden. It discloses that the estimate is model-based and not billable, which is useful. However, it does not mention whether it modifies state, requires specific authentication, or what happens if inputs are invalid, leaving some transparency gaps.

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, immediately stating the tool's purpose and a key behavioral caveat. It is front-loaded and every word earns its place.

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?

Given the tool has 5 parameters and no schema descriptions, the description is too sparse to be fully actionable. It does not explain parameter relationships, required inputs, or how the output schema is populated, so it falls short of complete guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description provides no information about the parameters 'intent', 'vertical', 'count', 'access_token', or 'tenant_api_key'. With 0% schema description coverage, the description completely fails to compensate, making it difficult for an agent to correctly populate these fields.

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 uses the specific verb 'Estimate' with the object 'run cost' and specifies the timing 'before campaign launch', clearly distinguishing it from sibling tools like run_campaign. It also notes it's a model-based estimate and not billable, reinforcing the purpose.

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 description clearly states the context 'before campaign launch', indicating when to use it. However, it does not explicitly mention alternatives or exclusions, which would have earned a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: cost estimation, bulk lead export, campaign status, single lead retrieval, vertical listing, campaign creation, and feedback submission. No two tools have overlapping purposes; even get_campaign and get_lead are clearly separated by campaign vs. lead granularity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (estimate_cost, export_leads, get_campaign, get_lead, list_verticals, run_campaign, submit_feedback). This is a uniform and predictable naming convention.

Tool Count5/5

The server has 7 tools, which is well within the ideal 3–15 range. Each tool serves a clear function in the campaign lifecycle without redundancy, making the count appropriate for the domain.

Completeness3/5

The server covers campaign creation (run_campaign), reading campaign status (get_campaign), lead access (get_lead, export_leads), cost estimation, and feedback. However, it lacks list_campaigns, update_campaign, and delete_campaign, which are notable gaps for managing multiple campaigns. The core workflow is usable but not a full CRUD surface.

Resources