Three integration modes
Choose the mode that matches your stack. You can mix modes across different agents in the same organisation.| Mode | Use case | Latency | Install |
|---|---|---|---|
| In-process SDK | RTB, latency-critical Node.js pipelines | under 15ms | npm install @pecta/core |
| MCP proxy CLI | MCP servers in Claude Desktop or Cursor | under 50ms | npx pecta-proxy <server-cmd> |
| REST API | Python, Go, batch analysis, any HTTP client | 50–100ms | POST https://api.pecta.ai/v1/evaluate |
Key features
- Quality gates — parallel, fail-fast checks that run on the very first request with no training period. Built-in gates cover latency, schema validation, filesystem safety, PII detection, content signals, and a full RTB / OpenRTB suite.
- Reputation scores — a portable 0–1000 score per
agent_id, stored centrally and computed over a rolling window of the last 500 evaluations. - Privacy by architecture — Pecta never stores bid payloads, MCP tool inputs, or user content. Only metadata (gate name, pass/fail, reason, latency, timestamp) leaves your process.
- Zero hot-path overhead — telemetry batches asynchronously; gates never block waiting for a network response.
Get started
Pick the quickstart for your integration mode.SDK quickstart
Install
@pecta/core and gate your first agent output in Node.js.Proxy quickstart
Wrap any MCP server with
pecta-proxy — no code changes required.REST API quickstart
Evaluate agent output over HTTP from Python, Go, or any language.