Skip to main content
Glama
peterlozano

Datadog MCP Server

by peterlozano

list_metrics

Search Datadog metric names by keyword to discover available metrics before querying dashboards, monitors, or alerts.

Instructions

Search available Datadog metric names. Useful for discovering what metrics exist before querying.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesSearch string for metric names. E.g. 'system.cpu', 'aws.ec2'

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It implies a read-only search but says nothing about result caps, pagination, or how many names are returned, which matters for a discovery tool that could return thousands of metrics.

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?

Two short sentences, zero padding, with the core purpose front-loaded ahead of the workflow hint.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter read tool with a fully documented schema and no output schema, the description is minimally sufficient. It leaves the behavioral surface (result limits, whether matching is prefix/substring) entirely unspecified.

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 coverage is 100% and the single 'query' parameter is documented with concrete examples ('system.cpu', 'aws.ec2'). The description adds no syntax or matching-behavior detail beyond the schema, so the baseline 3 applies.

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?

States a specific verb (search) and resource (Datadog metric names), which clearly separates it from query_metrics and the monitor/host/dashboard siblings. It does not explicitly name a sibling, but the resource is unambiguous.

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?

Gives a clear usage context: discovery of metric names prior to querying. That is the correct mental model for this tool. It stops short of naming query_metrics explicitly or stating when not to use it.

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