Skip to main content
The discovery endpoint returns a machine-readable JSON document that describes the Agent Feedback service: where to submit outcomes, how to push telemetry, which SDK packages are available for download, and what the protocol’s privacy and reliability guarantees are. Feedback-aware runtimes and the agent-feedback-doctor CLI use this document to resolve the submission URL and verify that the service is reachable before running integration checks.

Endpoint

Base URL: https://agent-feedback-api-production.up.railway.app No authentication is required. The endpoint is publicly accessible.

Legacy endpoint

The original discovery path is still supported and will continue to return a response, but it is deprecated:
The legacy response sets "deprecated": true and includes a "replacement" field pointing to the v1 URL. Update any tooling or hardcoded references to use /.well-known/agent-feedback-v1.json instead.

Example request

Example response

Response fields

string
Human-readable service name: "Agent Feedback Protocol".
number
Protocol version integer. Currently 1.
string
One-sentence description of what the service collects.
object
Describes the telemetry batching endpoint.
object
Describes the outcome submission endpoint.
object
Explains how interactions are classified per surface.
  • "http" — starts as unclassified; promoted to confirmed when an outcome review arrives.
  • "mcp" — always confirmed immediately because the agent calls the registered tool explicitly.
object
Direct download URLs for each SDK package and the raw protocol archive.
object
Per-surface reliability summary.
  • "http" — best effort for generic agents; deterministic when the consuming runtime explicitly handles the _agentFeedback contract.
  • "mcp" — protocol-backed through the registered report_product_outcome MCP tool.
string
Privacy statement clarifying that agent identity is never required or asserted. customerRef and runtime hints are optional and opaque.
string
Data policy reminder embedded in the document: never submit prompts, transcripts, secrets, credentials, personal data, customer content, or raw tool payloads.

Use cases

agent-feedback-doctor CLI — the CLI fetches this document to verify that the service is reachable, resolve the correct submission URL, and confirm that your product key can reach the telemetry endpoint before you deploy. Feedback-aware runtimes — runtimes that natively understand the Agent Feedback protocol read this document to discover the submission URL dynamically rather than hardcoding it. This means you can point a runtime at any compatible Agent Feedback deployment by changing one environment variable. SDK bootstrapping — the integrations field gives installers and setup scripts direct download URLs for every supported language without requiring a registry lookup.
The /.well-known/agent-feedback.json legacy endpoint sets "deprecated": true and "writesEnabled": false in its response. If your tooling reads this document and sees deprecated: true, update its configuration to use the v1 URL.