
Documentation
Get started with AgentFlare in minutes. Our comprehensive guides help you integrate observability into your AI agents quickly and easily.
Quick Start
- Install the AgentFlare SDK for your language of choice.
- Swap your existing MCP client import with the AgentFlare client.
- Run your agent as usual – telemetry will automatically stream to your dashboard.
- View real-time insights in your AgentFlare dashboard.
Sample API Usage
import { AgentFlareClient } from '@agentflare/telepathy' const client = new AgentFlareClient({ apiKey: 'YOUR_KEY' }) await client.startSession(async (session) => { // Your agent logic here await session.callTool('weather_lookup', { location: 'NYC' }) // Telemetry automatically captured console.log('Session complete!') })
Guides
Step-by-step tutorials for integrating AgentFlare with popular frameworks and languages.
Browse Guides →API Reference
Complete API documentation with examples for all AgentFlare features and endpoints.
View API Docs →