Skip to main content
Glama

create_monitor

Create a production monitor. "scenarioGoal" is what GOOD looks like for this agent — the judge scores every ingested call against it, exactly as a test scenario goal works. Optional "assertions" are plain-English checks the agent must satisfy. Read the ingest secret afterwards from GET /api/monitor/{id}/secret. Requires a pro or enterprise plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesHuman name, e.g. "Support line — main agent".
rubricNoExtra free-text rubric appended to the judge instructions.
languageNoBCP-47 language tag, default "en".
assertionsNoPlain-English checks the agent must satisfy.
sampleRateNoFraction 0..1 of ingested calls to score. Default 1 (score every call).
scenarioGoalYesWhat the agent is supposed to accomplish on every call.
alertWebhookUrlNoOptional public https URL to receive signed drift alerts.

TDQS

A4.4/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. It discloses meaningful behavioral context: the judge scores every ingested call against scenarioGoal, assertions are checked, the ingest secret must be fetched via a specific endpoint, and a plan requirement exists. It does not cover all possible side effects or response shape, but the provided details go well beyond a minimal mention of creation.

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 compact and front-loaded. It leads with the core purpose, then adds essential clarifications about the two most important parameters, a critical follow-up action (reading the secret), and a plan requirement. Every sentence earns its place with no filler or redundancy.

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?

For a creation tool with 7 parameters and no output schema, the description covers the purpose, key parameter semantics, plan constraints, and a necessary post-create action. It does not describe the response body or error handling, but it gives enough operational guidance to use the tool effectively. A small gap remains around what the tool returns upon success.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds genuine value for scenarioGoal by explaining it as "what GOOD looks like" and comparing it to test scenario goals, and for assertions as "plain-English checks." Other parameters are left to the schema, but this added semantics lifts the score above baseline.

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 the specific verb+resource pattern "Create a production monitor," clearly distinguishing this from sibling tools like create_suite. It further clarifies the core semantic of scenarioGoal and the judge/scoring model, leaving no ambiguity about what the tool creates and for what 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?

Clear context is provided: this is for production monitoring, and it requires a pro or enterprise plan. However, it does not explicitly state when to prefer this over alternatives such as run_test or create_suite, nor does it mention exclusions or fallback tools.

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

A4/5.0
Disambiguation4/5

Most tools are clearly distinct by resource (monitors, suites, flows, numbers, recordings), but run_test and test_flow could be confused since both execute tests, though their scopes differ. The descriptions help disambiguate them.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (create_, get_, list_, run_, verify_, etc.), with no camelCase or mixed conventions. Even compound names like get_monitor_health and verify_number_confirm remain predictable.

Tool Count4/5

At 16 tools, the set is slightly above the optimal 3-15 range, but the breadth of the voice-agent testing/monitoring domain justifies each tool's existence. It feels well-scoped rather than bloated.

Completeness2/5

The tool set lacks update/delete operations for most entities (monitors, suites, flows) and omits a get_run tool to retrieve individual live test results, leaving significant gaps that agents cannot work around. This will cause failures in lifecycle management and live-run result retrieval.

Resources