Skip to main content
Glama

create_asset

Start monitoring a new asset (website/domain) in YOUR Merlonix account. Provide a hostname and asset_type; optionally a label and which checks to enable. Returns the created asset. Requires an API key with write scope. Subject to your plan asset quota (a full or non-paying plan returns an error).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelNoOptional human label (max 120 chars).
hostnameYesThe hostname to monitor, e.g. example.com
asset_typeYesAsset kind: "hostname" (a website/host), "domain", "certificate", or "dns_record".
dns_enabledNoMonitor DNS records.
ssl_enabledNoMonitor the TLS certificate (default on for hostnames).
domain_enabledNoMonitor domain-registration (RDAP) expiry.
uptime_check_urlNoOptional URL to probe for uptime (enables uptime checks).

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate this is a write operation (readOnlyHint=false) and non-destructive (destructiveHint=false). The description adds behavioral context beyond annotations by stating the write scope requirement, plan quota error condition, and that it returns the created asset. This helps the agent understand consequences and prerequisites, though it doesn't cover duplicate handling or exact error semantics.

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 sentences, front-loaded with the main purpose, followed by required inputs, optional inputs, and caveats. Every sentence earns its place; there is no redundancy or fluff.

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?

Despite no output schema, the description mentions the return value ('Returns the created asset'), which is helpful. It covers required inputs, optional settings, authentication, and error conditions. Missing are details on duplicate handling or idempotency, but these are not critical for a create tool and annotations already address mutation behavior. Overall, it is complete enough for a tool of this complexity.

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 description coverage is 100%, so the schema already documents all 7 parameters. The description adds a small amount of semantic value by mentioning 'optionally a label and which checks to enable', which aggregates the check-related booleans, but it does not provide details beyond what the schema already states. This matches the baseline of 3 for full schema coverage.

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's purpose: 'Start monitoring a new asset' in the user's Merlonix account. The verb 'start monitoring' is specific and the resource is a new asset (website/domain). It distinguishes itself from siblings like update_asset, delete_asset, and list_my_assets by focusing on creation.

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 provides concrete usage context: require hostname and asset_type, optionally a label and checks. It also gives important preconditions: 'Requires an API key with write scope' and 'Subject to your plan asset quota (a full or non-paying plan returns an error)'. While it doesn't explicitly mention alternatives, the context is clear enough for an AI agent to decide when to call this tool.

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

Each tool targets a distinct resource and action. The five check tools are differentiated by their target (agent readiness, broken links, domain health, email blacklist, MCP health), and asset/alert management tools have clear CRUD/lifecycle boundaries. No two tools appear to overlap.

Naming Consistency5/5

All 16 tools follow a consistent verb_noun pattern with lowercase and underscores (e.g., check_domain_health, create_asset, list_my_alerts). The verbs are clear and consistently used, making the API predictable.

Tool Count5/5

16 tools is well-scoped for a monitoring service that spans asset management, alert lifecycle, multiple diagnostic checks, vendor status, and plan listing. Every tool has a distinct role and earns its place without redundancy.

Completeness4/5

The tool surface covers full asset CRUD (create, list, update, delete, get checks), alert lifecycle (list, acknowledge, resolve), and a broad set of standalone checks. Minor gaps like a direct 'get asset' endpoint or manual re-check are absent, but core workflows are fully supported.

Resources