Skip to main content
Glama
Ringer

warp-mcp

by Ringer

List call detail records

cdr_get_details
Read-onlyIdempotent

Retrieve call detail records for a date range with optional filters to investigate specific calls, verify traffic, or debug call failures.

Instructions

List call detail records (CDRs) for a date range with optional filters, newest first. Use to investigate specific calls, verify traffic, or debug call failures. Pagination is cursor-based: pass the previous response's next_cursor back as cursor to get the following page, and stop when has_more is false. There is no page number and no total count — an exact total over the CDR store is not affordable at platform volume. For aggregate metrics use cdr_get_statistics; for chart data use cdr_get_trends. Returns up to 50 records per page — pass next_cursor to continue; the WARP API itself accepts up to 1000 for direct callers. Errors: INVALID_DATE, INVALID_CURSOR (a bad cursor is a hard error, never a silent restart), CDR_QUERY_FAILED.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
aniNoFilter by ANI (calling number)
dniNoFilter by DNI (called number)
limitNoRows per page (1-50, default 50)
cursorNoOpaque cursor from a previous call's next_cursor. Omit for the first page.
end_dateNoEnd date (YYYY-MM-DD, inclusive)
directionNoFilter by call direction
start_dateNoStart date (YYYY-MM-DD)
dispositionNoFilter by call disposition (e.g. ANSWERED, NO ANSWER, BUSY, FAILED)
tz_offset_minutesNoOperator timezone offset in minutes, as returned by JS getTimezoneOffset() (e.g. 420 for US Mountain in summer)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed4 schema fields changedv1.1.0
    • addedInput schema / properties / cursor
      Added value: +{
      +  "description": "Opaque cursor from a previous call's next_cursor. Omit for the first page.",
      +  "type": "string"
      +}
    • addedInput schema / properties / limit
      Added value: +{
      +  "description": "Rows per page (1-50, default 50)",
      +  "maximum": 50,
      +  "minimum": 1,
      +  "type": "integer"
      +}
    • removedInput schema / properties / page
      Removed value: -{
      -  "description": "Page (1-based, default 1)",
      -  "maximum": 9007199254740991,
      -  "minimum": 1,
      -  "type": "integer"
      -}
    • removedInput schema / properties / per_page
      Removed value: -{
      -  "description": "Page size (1-500, default 50)",
      -  "maximum": 500,
      -  "minimum": 1,
      -  "type": "integer"
      -}
  2. First observedv1.0.2

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds substantial behavioral detail beyond that: cursor-based pagination semantics, absence of page numbers and total counts, the hard-error behavior for invalid cursors, the 50-record page cap versus the WARP API's 1000, and specific error codes. This is rich, non-obvious behavior that an agent needs to call the tool correctly.

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 dense but every sentence earns its place: action/scope, use cases, pagination behavior, sibling routing, and error codes. It is front-loaded with the core purpose, then expands into operational details.

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

Completeness5/5

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

For a paginated list tool with nine parameters, no required parameters, no output schema, and annotations covering safety, the description is complete. It explains how pagination works, when to stop, what not to expect ('no page number and no total count'), and what errors may occur. An agent has everything needed to invoke and consume this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents every parameter, giving a baseline of 3. The description adds meaningful semantics beyond the schema, especially for cursor ('pass the previous response's next_cursor back'), the lack of page numbers/total counts, and the limit behavior. It doesn't deeply elaborate on each filter, but the schema already does that.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('List call detail records') on a specific resource (CDRs), with scope (date range, optional filters) and ordering ('newest first'). It names concrete use cases and explicitly distinguishes itself from cdr_get_statistics and cdr_get_trends, so an agent can tell it apart from siblings.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance ('investigate specific calls, verify traffic, or debug call failures') and explicitly names alternatives for other needs ('For aggregate metrics use cdr_get_statistics; for chart data use cdr_get_trends'). This leaves little ambiguity about tool selection.

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

Install Server

Other Tools

Latest Blog Posts

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/Ringer/warp-mcp'

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