Claude Code plugin for querying Envoy proxy access logs via Apoxy's MCP server.
Provides a skill that teaches Claude how to effectively query your proxy logs using PRQL — including field names, types, query patterns, and best practices.
-
Create an API key in the Apoxy console (avatar > Account Settings > API Keys).
-
Add the MCP server to your project's
.mcp.json:
{
"mcpServers": {
"apoxy": {
"type": "http",
"url": "https://api.apoxy.dev/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}- Install the plugin in Claude Code:
/plugins add apoxy-dev/claude-plugin
Once configured, ask Claude questions about your traffic:
- "Show me 5xx errors in the last hour"
- "What are the top paths by request count?"
- "Break down traffic by HTTP method"
- "Show me slow requests over 500ms"