pydantic-models

pydantic-models is a cursor rule for Cursor from techskies11/datadog-mcp. It costs 0 tokens per session (2,037 once invoked), scanned A, original, MIT.

A set of rules for using Pydantic models, Python classes that validate structured data, in FastMCP tools. It distinguishes models for incoming API data from strict models returned by tools.

In plain words
What is it for?
Use it when defining or reviewing FastMCP request and response models, validation settings, API response parsing, and paginated results.
Why use it?
It keeps tool inputs and outputs predictable while allowing the external Datadog API to add response fields without breaking parsing.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/techskies11/datadog-mcp/pydantic-models
Clone the repo
git clone --depth 1 https://github.com/techskies11/datadog-mcp

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pydantic-models

README.md
[![agentmods](https://agentmods.dev/badge/rules/techskies11/datadog-mcp/pydantic-models.svg)](https://agentmods.dev/rules/techskies11/datadog-mcp/pydantic-models)
Your own site
<a href="https://agentmods.dev/rules/techskies11/datadog-mcp/pydantic-models"><img src="https://agentmods.dev/badge/rules/techskies11/datadog-mcp/pydantic-models.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 2,037 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.02037
Opus 5 $0.00000 $0.01019
Sonnet 5 $0.00000 $0.00407
Haiku 4.5 $0.00000 $0.00204

Measured 5d ago against content hash ed1e19577101, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

pydantic-models scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/pydantic-models.mdc · 212 lines

How it starts

The opening of the file, as written. The whole thing — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pydantic for FastMCP

Use Pydantic models for ALL tool inputs and outputs - never TypedDict, never dict[str, object]. This project has two distinct model families with different strictness, defined once in src/datadog_mcp/utils/response.py and reused everywhere. Getting the family right matters more than any single ConfigDict flag below.

The Two Model Families

Inbound: DatadogModel - tolerant, for parsing Datadog API responses

from datadog_mcp.utils.response import DatadogModel

class LogEntry(DatadogModel):
    """A single log entry, flattened from Datadog's {id, type, attributes} envelope."""
    id: str | None = None
    message: str | None = None
    timestamp: str | None = None

DatadogModel sets extra="ignore". Datadog can and does add new fields to API responses without notice; strict inbound validation would turn every such addition into a hard failure for this server. Never override this to extra="forbid" on an inbound model.

Outbound: ToolResponse / PaginatedListResponse - strict, for tool return values

from datadog_mcp.utils.response import ToolResponse, PaginatedListResponse, finalize_list_response

class GetLogDetailsResponse(ToolResponse):
    """Response for `get_log_details`."""
    log: LogEntry | None = None

class SearchLogsResponse(PaginatedListResponse):
    """Response for `search_logs`."""
    logs: list[LogEntry] = Field(default_factory=list)
    next_cursor: str | None = None
    has_more: bool = False

ToolResponse sets extra="forbid" and already declares success: bool = True and error: str | None = None. PaginatedListResponse additionally declares count, truncated, warning, total_available. This is data the server fully controls - every field must be declared up front, never injected ad-hoc at a call site (no response["extra_debug_field"] = ...).

Use PaginatedListResponse (not plain ToolResponse) for any response whose main payload is a single named list, then finalize it:

Read the full file on GitHub · 212 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 212 lines · 0 tokens per session scan A ed1e19577101

Subscribe to this mod's changes

pydantic-models is a cursor rule published in the GitHub repository techskies11/datadog-mcp (0 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,037 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.