Documentation

Get started with AgentFlare in minutes. Our comprehensive guides help you integrate observability into your AI agents quickly and easily.

Quick Start

  1. Install the AgentFlare SDK for your language of choice.
  2. Swap your existing MCP client import with the AgentFlare client.
  3. Run your agent as usual – telemetry will automatically stream to your dashboard.
  4. 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 →

Examples

Real-world examples and sample code for common use cases and integrations.

View Examples →