Skip to content

SQLite MCP (read-only)

Wired via .mcp.json for inspecting SQLite .db files during development — primarily the Antigravity/agy conversation stores that AgySessionAdapter reads.

Enabling

Set FLEET_TG_SQLITE_DB to a .db path before starting Claude Code, then the sqlite MCP server loads against it.

$env:FLEET_TG_SQLITE_DB = "C:\path\to\a-copy-of-conversation.db"

Safety

  • Point at a COPY, never the live agy store. These files are real conversation history; corruption is unrecoverable.
  • Write/DDL tools (write_query, create_table, alter_table, drop_table, append_insight) are denied in .claude/settings.json. Only read tools (read_query, list_tables, describe_table, export_query, list_insights) are allowed.
  • AgySessionAdapter itself opens these DBs with SqliteOpenMode.ReadOnly; the MCP gating mirrors that guarantee at the agent layer.

Server pinned: @executeautomation/database-server@1.1.0.