MCP-Native
Ships as an MCP server — add one config block and every tool call is captured automatically. Zero code changes.
Open-source flight recorder for every tool call, approval, and data exchange your agents make.
Get AgentLens running in 60 seconds:
# Install and start the server
npx @agentlensai/server
# Create an API key
curl -X POST http://localhost:3400/api/keys \
-H "Content-Type: application/json" \
-d '{"name": "my-agent"}'Then add AgentLens to your MCP agent config:
{
"mcpServers": {
"agentlens": {
"command": "npx",
"args": ["@agentlensai/mcp"],
"env": {
"AGENTLENS_API_URL": "http://localhost:3400",
"AGENTLENS_API_KEY": "als_your_key_here"
}
}
}
}Open http://localhost:3400 and watch your agent's activity in real time.