Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Claude Historian
history

Claude Historian MCP Server

Search Claude Code conversation history

claudehistorysearchmemorycontext

About

## Claude Historian MCP Server: Conversation Memory The **Claude Historian MCP Server** provides persistent conversation history for Google Antigravity sessions. This integration maintains context across conversations, enabling AI assistants that remember past interactions and build on previous discussions. ### Why Claude Historian MCP? Persistent memory enhances AI: - **Long-Term Memory**: Remember past conversations - **Context Retrieval**: Find relevant past discussions - **Summarization**: Condense conversation history - **Cross-Session**: Memory persists between sessions - **Searchable**: Query conversation history ### Key Features #### 1. Store Conversations ```python from claude_historian import Historian historian = Historian() # Save conversation automatically historian.save_conversation( messages=messages, metadata={ "topic": "API design", "project": "backend-refactor" } ) ``` #### 2. Retrieve Context ```python # Find relevant past conversations relevant = historian.search( query="How did we implement authentication?", limit=5 ) for conv in relevant: print(f"Date: {conv.timestamp}") print(f"Summary: {conv.summary}") ``` #### 3. Inject History ```python # Add relevant history to current conversation context = historian.get_context( current_query="Continue the refactoring discussion", max_tokens=2000 ) messages = [ {"role": "system", "content": f"Previous context: {context}"}, {"role": "user", "content": current_query} ] ``` ### Configuration ```json { "mcpServers": { "claude-historian": { "command": "npx", "args": ["-y", "@anthropic/mcp-historian"], "env": { "HISTORIAN_STORAGE": "~/.claude-history", "MAX_HISTORY_SIZE": "10000" } } } } ``` ### Use Cases **Project Continuity**: Resume discussions from previous sessions. **Knowledge Accumulation**: Build on past solutions and decisions. **Team Context**: Share conversation history across team members. The Claude Historian MCP Server brings persistent memory to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "claude-historian": {
      "mcpServers": {
        "claude-historian": {
          "args": [
            "-y",
            "claude-historian-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Runs locally without external dependencies
  2. 22. Search past Claude Code conversations
  3. 33. Uses SQLite FTS5 for intelligent search

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers