Appearance
Quick Start
Get started in 2 minutes.
Step 1: Get Your API Key
- Sign up at converra.ai
- Go to Integrations → API Keys
- Create and copy your key
Step 2: Choose Your Integration
Option A: AI Assistant (MCP)
Open Cursor, Claude Code, Windsurf, or any AI coding assistant and say:
"Install the Converra MCP server with API key [paste your key here], then help me upload my agents and optimize them."
That's it. Your AI handles the setup.
Option B: SDK (Programmatic)
Wrap your LLM client with one line — all conversations are captured automatically.
bash
npm install converrabash
pip install converratypescript
import { Converra } from 'converra';
import OpenAI from 'openai';
const converra = new Converra({ apiKey: 'sk_live_...' });
const openai = converra.wrap(new OpenAI());
// Use openai normally — conversations captured automatically
const response = await openai.chat.completions.create({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Hello' }],
});python
from converra import Converra
from openai import OpenAI
converra = Converra(api_key="sk_live_...").init()
client = converra.wrap(OpenAI())
# Use client normally — conversations captured automatically
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello"}],
)See the SDK Guide for Anthropic, Vercel AI SDK, and auto-instrumentation.
Option C: Zero-Code Auto-Instrumentation
No code changes needed — just set environment variables:
bash
CONVERRA_API_KEY=sk_live_... node --import converra/auto server.jsEvery OpenAI and Anthropic call is captured automatically.
What You Can Do
Once connected, Converra:
- Diagnoses why your agents underperform
- Generates targeted fixes (prompt, config, model)
- Tests every fix against 36+ simulated conversations
- Ships proven improvements automatically
With MCP, just ask:
- "Analyze my support agent for issues"
- "Optimize my onboarding agent"
- "Compare my current agent vs this new version"
Manual MCP Setup (Optional)
Claude Code
bash
claude mcp add converra -- npx -y mcp-remote@latest https://converra.ai/api/mcp \
--header "Authorization:Bearer YOUR_API_KEY"Cursor
Add to .cursor/mcp.json:
json
{
"mcpServers": {
"converra": {
"url": "https://converra.ai/api/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}Other Platforms
See MCP Setup Guide for Claude Desktop, Windsurf, and AntiGravity.
Import from LangSmith or Langfuse
Already using an observability platform? Connect for continuous sync of traces and feedback.
- Go to Integrations in the Converra app
- Click Connect LangSmith (or Connect Langfuse) and paste your API key
- Select your workspace and project
- Configure sync frequency (hourly to daily)
- Converra discovers your agents and agent systems automatically
Multi-agent traces are grouped into agent systems with path visualization and weakest-link scoring.
See the LangSmith or Langfuse integration guides.
Next Steps
- SDK Guide - LLM client wrapping, tracing, A/B testing
- Integrations Overview - All connection options
- MCP Tools Reference - All MCP commands
- REST API - Direct API integration
