Connect your favorite AI assistant to HTTPeep. Debug traffic, mock responses, override DNS, and create rules — all from a single sentence in your terminal.
Quick Start
Download and install HTTPeep. The CLI tool (httpeep-cli / hp) is included out of the box — no separate install needed.
Run the command below to register HTTPeep's AI Skills with your coding agent. Supports Claude Code, Codex CLI, Gemini CLI, and Cursor.
npx skills add HTTPeep/agent-skills --skill httpeep-cliLaunch the app and trust the root CA with one click, or run the CLI command below and enter your password.
httpeep-cli cert installOpen your AI assistant and describe what you need. For example:
"Find all 5xx errors from the last 10 minutes and tell me why they're failing""Mock /api/user/profile to return a VIP user for testing""Create a rule to forward api.example.com to localhost:3000""Analyze the slowest requests and show me a breakdown"How It Works
Install HTTPeep CLI Skills with one command. Works with Claude Code, Codex CLI, Gemini CLI, and Cursor out of the box.
Type a natural language command like "Mock the /api/user response" or "Find all 5xx errors from the last hour".
Your assistant reads captured traffic, creates rules, analyzes sessions, and generates diagnostic reports — all through HTTPeep's CLI tools.
Watch how AI assistants interact with HTTPeep's debugging capabilities through natural conversation
{
"url_like": "/api/user",
"limit": 5,
"status_code": 200
}ID METHOD URL STATUS DURATION
abc123 GET /api/user 200 45ms
def456 GET /api/user/profile 200 32ms
ghi789 POST /api/user/update 200 120ms{
"session_id": "abc123",
"unredacted": true
}{
"response_body_preview": {
"id": "u_123",
"name": "Alice",
"subscription": {
"tier": "free",
"expires_at": "2026-12-31"
}
}
}{
"rule": {
"id": "mock-user-tier-pro",
"enabled": true,
"match": {
"domains": [{"type":"exact","value":"api.example.com"}],
"paths": [{"type":"exact","value":"/api/user"}]
},
"actions": [{
"type": "modify_response",
"json_path": "$.subscription.tier",
"replace_with": "pro"
}]
}
}✓ Rule "mock-user-tier-pro" upserted
Quota: 2 / 10 used
Builtin rules: 3{
"id": "u_123",
"name": "Alice",
"subscription": {
"tier": "free",
"expires_at": "2026-12-31"
}
}{
"id": "u_123",
"name": "Alice",
"subscription": {
"tier": "pro",
"expires_at": "2026-12-31"
}
}Compatibility
HTTPeep CLI Skills integrate with all major AI coding assistants
Anthropic's CLI agent. The most integrated experience for HTTPeep Skills.
OpenAI's Codex CLI. Use HTTPeep Skills for terminal-based debugging.
Google's Gemini CLI. Debug your APIs with Gemini and HTTPeep.
The AI-first code editor. Use HTTPeep Skills right inside Cursor.
Use Cases
Ask your AI assistant to mock any API endpoint with custom responses. Override specific fields, test edge cases, and iterate instantly.
Point production domains to staging or local environments with a single command. Run E2E tests to verify connectivity.
Analyze failed requests, identify root causes, and get actionable fix suggestions — all powered by real captured traffic data.
Create complex forwarding, rewrite, and mock rules through natural language. No need to navigate UI panels or write config files.
Download HTTPeep and connect your AI assistant to transform how you debug HTTP traffic.