Skip to main content
Glama

Vantaj Uptime MCP

Create monitor

create_monitor

Create a new uptime monitor. Checks start immediately. Types: http, tcp (host:port URL), smtp, ping, ssl, dns. Set inverted=true for exposure monitoring (alert when a target that should stay down becomes reachable).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL for http, host for ping/smtp, host:port for tcp
nameYesDisplay name
typeYesCheck type
groupNoOptional group name
regionsNoProbe regions (defaults to all)
invertedNoExposure monitoring: up while unreachable, alert when reachable
project_idYesProject ID (from list_projects)
timeout_secondsNoRequest timeout in seconds (default 30)
interval_secondsNoCheck interval (default 300)
expected_status_codesNoHTTP status codes considered up (default: any 2xx)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYesThe resource object

TDQS

A4.2/5.0
Behavior4/5

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

Annotations are minimal (all false), so the description carries the burden of explaining behavior. It adds useful context: checks start immediately, tcp uses host:port URL, and inverted enables exposure monitoring. These details go beyond what annotations provide.

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 three short sentences, front-loaded with the main purpose, and contains no filler. Every sentence contributes useful information.

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 the schema and output schema cover parameter details and return values, the description is complete enough. It highlights key behavioral aspects (immediate start, exposure monitoring) but omits guidance on other parameters like regions or expected_status_codes, though these are documented in the schema.

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?

The input schema has 100% parameter coverage, so the schema already documents all parameters. The description's mention of types and inverted adds minimal new meaning, mostly rephrasing the schema descriptions.

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 clearly states the tool creates a new uptime monitor, which is a specific verb and resource. It also lists the supported monitor types, distinguishing it from sibling tools like update_monitor or pause_monitor.

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 implies usage by naming the action and notes that checks start immediately, but it does not explicitly compare to alternatives or describe when not to use this tool. It provides clear context without exclusions.

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.1/5.0
Disambiguation5/5

Every tool targets a distinct resource-action pair. Monitor-related tools use distinct verbs (create, get, list, update, pause, resume), and the two alert-suppression mechanisms (maintenance window vs pause) are clearly differentiated in descriptions.

Naming Consistency5/5

All tools follow a consistent lowercase verb_noun pattern (create_, get_, list_, update_, pause_, resume_). No mixing of conventions.

Tool Count5/5

13 tools provide a comprehensive but focused interface for uptime monitoring, well within the ideal range.

Completeness3/5

The set lacks a delete operation for monitors, an important part of the monitor lifecycle, and maintenance windows can be created but not listed or updated. Core monitoring operations are covered, but these gaps could require workarounds.

Resources