Skip to main content
Glama

Datadog MCP Server

by Nozomuts
types.ts1.58 kB
export type Log = { id: string; host?: string; service?: string; status?: string; timestamp?: string; tags?: string[]; attributes?: Record<string, any>; message?: string; }; export type LogSearchParams = { filterQuery: string; filterFrom: Date; filterTo: Date; pageLimit: number; pageCursor?: string; }; export type LogSearchResult = { logs: Log[]; nextCursor?: string; }; export type Span = { id: string; traceId?: string; spanId?: string; parentId?: string; service?: string; resource?: string; host?: string; env?: string; startTimestamp?: string; endTimestamp?: string; duration?: number; type?: string; tags?: string[]; attributes?: Record<string, any>; }; export type SpanSearchParams = { filterQuery: string; filterFrom: Date; filterTo: Date; pageLimit: number; pageCursor?: string; }; export type SpanSearchResult = { spans: Span[]; nextCursor?: string; }; export type SpanAggregationParams = { filterQuery: string; filterFrom: Date; filterTo: Date; groupBy?: string[]; interval?: string; type: "timeseries" | "total"; }; export type SpanAggregationResult = { buckets: SpanBucket[]; elapsed?: number; requestId?: string; status?: string; warnings?: SpanWarning[]; }; export type SpanBucket = { id: string; by?: Record<string, string>; compute?: Record<string, any>; }; export type SpanWarning = { code?: string; detail?: string; title?: string; }; export type ToolResponse = { content: { type: "text"; text: string; }[]; isError: boolean; };

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Nozomuts/datadog-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server