Skip to content

v0.9.0 — your agent can now search every session on your machine (MCP)

Choose a tag to compare

@github-actions github-actions released this 09 Jul 19:54
b775954

showagent is now an MCP server as well as a TUI.

New: showagent mcp — a stdio MCP server that gives any MCP-capable agent (Claude Code, Codex, …) searchable access to your entire coding-session history across all agents:

  • list_sessions — filter by provider/workspace, free-text search over messages
  • get_transcript — pull a past conversation (most-recent-first truncation, context-safe defaults)
  • branch_session / convert_session — copy a session, or rewrite it into another agent's native format
  • resume_command — returns the exact command to continue a session; never executes anything

Ask Claude Code: "find my Codex session about the rate limiter and bring it over here" — and it can.

Setup: claude mcp add showagent -- showagent mcp (Codex config example in the README).

Safety: deletion is deliberately NOT exposed over MCP (the TUI's two-press confirm stays the only path), nothing is ever executed on your behalf, and everything remains 100% local.

Built on the official modelcontextprotocol/go-sdk. Also includes the v0.8.2 fixes (Claude project-dir naming for workspaces with special characters, Gemini .project_root markers) and the real-CLI e2e harness.