Skip to main content
Glama
peterlozano

Datadog MCP Server

by peterlozano

list_hosts

Retrieve Datadog infrastructure hosts with live CPU, load, and IOWait metrics. Filter, sort, and paginate to monitor host health and diagnose performance issues.

Instructions

List Datadog infrastructure hosts with status, CPU, load, and IOWait metrics.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromNoOnly show hosts alive since this time2h
countNoNumber of hosts to return
startNoStarting offset for results
filterNoFilter string for host search
sortDirNoSort direction
sortFieldNoField to sort by

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/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 reveals what data is returned but says nothing about whether this is a read-only operation, default time window behavior, pagination limits (count max 1000), or rate limits.

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 a single, front-loaded sentence with no wasted words. Every clause ('Datadog infrastructure hosts' and the metric list) earns its place.

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

Completeness2/5

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

This is a read-only list tool with no annotations, no output schema, and six parameters. The description omits pagination, filtering, sorting, and the time window, all of which are needed to call the tool correctly.

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 baseline is 3. The description mentions CPU, load, and IOWait, which correspond to the sortField enum but adds no details about the parameters themselves.

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 states a specific verb and resource: 'List Datadog infrastructure hosts' and enumerates the metrics returned (status, CPU, load, IOWait). It clearly distinguishes from most siblings, which operate on different resources, but does not explicitly contrast with get_host_totals, a closely related host tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use or when-not-to-use guidance. The description does not mention pagination (count/start), the 'from' window, or filtering, nor does it point to get_host_totals for aggregate counts, leaving the agent to infer usage context.

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