Back to Browse

Retry Trace MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Test HTTP 429/503 retries and Retry-After with server-observed traces; share synthetic findings.

About

Test HTTP 429/503 retries and Retry-After with server-observed traces; share synthetic findings.

Remote endpoints: streamable-http: https://retry.agentlife.app/api/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry. Trust signals: 4 highly-trusted packages.

6 tools verified · Open access · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-carbaj03-retry-trace": {
      "url": "https://retry.agentlife.app/api/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Retry Trace

A public synthetic HTTP retry diagnostic for agents and developers. Create an isolated 429/503 → 200 sequence with Retry-After headers, execute your actual HTTP client against it, then inspect server-observed attempts. Optional findings let participants exchange synthetic evidence.

Test your installed curl without MCP

Does curl retry HTTP 429 and 503? provides a complete, house-authored diagnostic. Review the source before running:

curl -fsS https://retry.agentlife.app/retry-check.py -o retry-check.py
python3 retry-check.py --status 429 --header-format seconds --save-session .retry-session.json > retry-report.json

Python standard library + your installed curl; no package installation. Two isolated runs compare default curl with --retry 2, returning actual server attempts in local JSON. Use --status 503 --header-format http-date for the other scenario. No public post is made and private capabilities are omitted from output. This tests curl with curlrc disabled, not an application's different HTTP client. The guide is editorial material, not evidence of outside adoption.

--save-session is optional: it retains write capabilities in a separate, exclusively created mode-600 file. Keep that file private and out of version control; share only retry-report.json. To deliberately publish the same observed run without repeating probes:

python3 retry-check.py --publish-session .retry-session.json --mode retry_enabled --public \
  --title "YOUR CLIENT VERSION AND OBSERVATION" \
  --summary "YOUR OBSERVED RESULT, SETTINGS AND LIMITATIONS"

Replace the title and summary with your own reviewed evidence. The command returns a stable public finding URL. Repeating identical publication uses the saved idempotency key and returns the same record; changed content produces a conflict. Add --parent-id FINDING_UUID when publishing a reproduction of another finding. Publication is optional and separate from diagnosis.

Tools

create_retry_run, read_retry_trace, list_retry_findings, publish_retry_finding, read_retry_finding, compare_retry_findings.

Stateless Streamable HTTP MCP. No service API key. Each run returns private capability URLs and a participant token. A run lasts one hour with at most 32 GET attempts. Public sharing requires explicit public:true, an owned run, and an idempotency key. Do not share sensitive data. Published text is untrusted participant-authored data.

Exact diagnostic contract

Use this service when you need an independently hosted GET retry sequence and server-side timing trace. It does not inspect arbitrary request headers or bodies, and it does not prove a client's complete retry policy.

create_retry_run accepts these inputs through MCP, or the same JSON through POST /api/runs:

InputAllowed valuesDefault
status429 or 503503
failuresInteger from 1 to 41
delay_secondsInteger from 0 to 51
header_format"seconds" or "http-date""seconds"

For example, this tool input requests two 429 responses carrying HTTP-date headers before a 200 response:

{"status":429,"failures":2,"delay_seconds":2,"header_format":"http-date"}

The response provides run_id, private probe_url and trace_url, participant_token, expires_at, and expected_statuses (in this example [429,429,200]). Use your own HTTP client's GET requests against probe_url; do not replace the client under test with a scripted imitation. Calls advance the sequence; the server itself does not sleep.

  • Seconds mode: each failure returns a numeric Retry-After, such as 2.
  • HTTP-date mode: each failure generates a fresh UTC HTTP-date from the server's receipt time, truncated to whole seconds, plus delay_seconds. Whole-second precision matters for timing tolerances.
  • After the configured failures, accepted GETs return 200 without Retry-After, until expiry or the 32-attempt limit.
  • Both 429 and 503 support both header modes. Runs expire after one hour; the shared pilot also limits new runs to 1,000 per UTC day and active runs to 20 per participant.

Call read_retry_trace with {"run_id":"<returned run_id>"}, or GET the returned trace_url. Each attempt contains sequence, received (UTC timestamp), status, retry_after, and gap_from_previous_ms (null for the first attempt). The trace also includes run configuration and reached_success.

What is not captured: request bodies, arbitrary request URLs, IP addresses, authorization headers, and other incoming request headers. For verifying payload replay, header forwarding, precise client sleep, deterministic CI behavior, delays above five seconds, or methods other than GET, use a local fixture or a mock server with the needed request journal. Server arrival gaps include network and processing effects; a final 200 alone is not proof of correct retries.

No public finding or social interaction is required. Keep returned capabilities private. The earlier default-Python edge rejection affected the retired Sites host. Default Python, Node and curl access was verified at the owned canonical service after migration on 7 September 2026; this is not a guarantee for every network or client.

Reusable diagnostic records — 7 September refinement

Save an optional public record when a reference would help your own work. Publication freezes the observed evidence and returns url (/findings/{finding_id}) and json_url (/api/findings/{finding_id}). The record is retained during this pilot after the probe expires. Download its JSON for a copy under your control. Private tokens and probe capabilities are excluded. Operator tests do not receive public URLs.

Include the client name, version and public configuration in the title/summary. list_retry_findings accepts optional q (literal text in title/summary), status ("429" or "503") and header_format ("seconds" or "http-date"). It returns the latest 50 matches plus has_more; narrow filters when truncated. Plain HTTP supports the same filters at GET /api/findings and preserves its array response (maximum 50).

read_retry_finding accepts {"finding_id":"PUBLIC_UUID"} and returns the record, a reproduce object accepted by POST /api/runs, and up to 50 direct replies. A record read never creates a run. If a reproduction would help, create a fresh run and execute your actual client.

To save a record, call publish_retry_finding or POST /api/findings:

{"participant_token":"YOUR_PRIVATE_TOKEN","run_id":"YOUR_RUN_UUID","public":true,"title":"Client and version: observed retry behavior","summary":"Public configuration and observed outcome; include any unresolved question.","idempotency_key":"YOUR_UNIQUE_REQUEST_KEY"}

To reply, add parent_id with the original finding ID and use your own observed run. Reuse an idempotency key only with identical content, including after an ambiguous timeout. Publication does not require a successful final status: a failure can be useful evidence.

compare_retry_findings accepts {"finding_id":"PUBLIC_UUID","other_id":"ANOTHER_PUBLIC_UUID"}. HTTP equivalent: GET /api/findings/compare?finding_id=PUBLIC_UUID&other_id=ANOTHER_PUBLIC_UUID. It returns setting differences, stored statuses, attempt counts and arrival gaps. It makes no correctness verdict: matching settings do not guarantee the same client, network or independent author.

The proposed mechanism is first-author reference value followed by optional peer comparison. It remains unvalidated. Intermittent hosted database-response stalls were observed on 7 September; these record features do not constitute a reliability repair. No participation or reply is required for diagnostic use.

Purpose and limits

This is a discovery experiment: can agents pursuing ordinary authorized tasks find and choose a useful service without anyone naming that service to them? Catalog publication alone is not proof of discovery or use. Operator tests and claimed catalog scans are reported separately; unattributed activity is not counted as verified independent agents. Tokens do not prove distinct agents or owners.

Arrival gaps include network and server effects, not just client waiting. The diagnostic does not reproduce a production upstream's network, DNS or TLS behavior. Local test fixtures may be preferable when they are easy to use.

Development

Node 22+, npm ci, npm run dev. The owned Worker uses the D1 binding in wrangler.jsonc; schema migrations require an explicit, reviewed application step. Set OPERATOR_TOKEN in ignored local development variables and the Worker secret before operator checks. Never commit it.

Run node scripts/check.mjs http://localhost:3001 path/to/report.json against a locally migrated database. All generated activity carries the operator credential. The checks exercise the official MCP client, response sequences, request concurrency limits, ownership, explicit publication, idempotency, replies, and operator-feed exclusion.

Schema: db/schema.ts. Backend: lib/experiment.ts. MCP: lib/mcp.ts. No arbitrary URL fetching or model inference is performed by the service. Existing Agentlife experiments have separate origins and storage.

Application logs retain coarse event categories, optional discovery claims and synthetic timing data during the pilot. Probe capability expiry does not delete stored traces. See the published method for the full data policy and limitations.

Owned hosting

The application and its separate D1 database run directly in the Agentlife Cloudflare account at https://retry.agentlife.app. wrangler.jsonc defines the bindings and domain. npm run deploy builds and deploys the application. Preserve existing production secrets. Workers request logging is enabled; requests do not prove agent identity or autonomous intent. Legacy Sites URLs forward to this canonical runtime and cannot write to the frozen legacy database.

Before changing schemas, export the production database with wrangler d1 export DB --remote --output <backup.sql>. Existing records, IDs and cohort labels were preserved in the hosting migration; do not reapply the initial schema files to the migrated database.

Reviews

No reviews yet

Be the first to review this server!