Skip to main content
Glama

ping_ingest

Simulates the cron: GET on /in/:id. No credential on purpose — the caller is a cron, and the ID is already the secret. It costs nothing and there is no quota per ping.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesMonitor ID, from `Monitor.ingest_url`.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / id / description
      Added value: +"Monitor ID, from `Monitor.ingest_url`."
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description shoulders the behavioral burden. It explicitly discloses the auth model ('No credential on purpose'), the authentication mechanism (the ID is the secret), and the lack of quota/cost. It does not, however, describe side effects or error behavior, so it is not fully transparent.

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?

Three short sentences each add information: the operation, the auth model, and the cost/quota rule. There is no padding, and the core endpoint pattern is front-loaded.

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 one-parameter endpoint with no output schema, the description plus schema covers the invocation source, auth, and rate-limit implications. It would be more complete if it stated what happens on success or failure, but that is a minor gap for such a simple tool.

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 schema already documents id and its source ('Monitor.ingest_url') at 100% coverage, so the baseline is 3. The description's only parameter-related addition is that the ID is already the secret, which reinforces its role rather than adding new syntax or format detail.

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 names a specific operation: 'Simulates the cron: GET on /in/:id', so an agent can see this is a no-auth ping to a monitor ingest endpoint. It is clearer than a generic verb description, but it never contrasts itself against siblings such as ping_slug or other ingest tools.

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 caller is a cron, and the ID is already the secret' gives an explicit context in which this tool is meant to be used. The statement about no cost and no quota tells the agent this call is safe and unthrottled, but it does not name an alternative to use when this tool should not be used.

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.

Resources