Visitor analytics for Codex.
Eyepup feeds OpenAI Codex / GPT-5 coding agents the same visitor-behaviour signal Claude Code and Cursor get — heat scores, friction patterns, recommended fixes. Pipe it through the CLI, expose it as an MCP server, or call the REST API directly from a Codex tool definition.
Three integration paths
Pick the one that matches your Codex setup.
Option 1
CLI piped into Codex stdin
eyepup ask "top 3 fixes for /pricing this week" | codex
Option 2
Custom Codex tool that wraps the CLI
# In your Codex agent definition, register a shell tool # that runs: # eyepup todo --site $SITE --limit 3 # # Codex sees the JSON output and emits the first fix.
Option 3
Native MCP server (roadmap)
# Coming soon: eyepup will expose a Model # Context Protocol server so Codex / Claude # Code / Cursor call tools natively without # CLI piping. For now, options 1 + 2 above.
