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 Memory
brain

Claude Memory MCP Server

Persistent memory for Claude conversations

claudememorycontextpersistence

About

## Claude Memory MCP Server: Persistent Knowledge Store The **Claude Memory MCP Server** provides a persistent knowledge store for Google Antigravity. This integration enables AI to remember facts, preferences, and learned information across sessions, creating a truly personalized assistant experience. ### Why Claude Memory MCP? Persistent knowledge transforms AI: - **Fact Storage**: Remember important information - **User Preferences**: Learn user coding styles - **Project Context**: Store project-specific knowledge - **Semantic Retrieval**: Find relevant memories - **Automatic Updates**: Keep knowledge current ### Key Features #### 1. Store Memories ```python from claude_memory import Memory memory = Memory() # Store facts and preferences memory.store("The user prefers TypeScript over JavaScript") memory.store("Project uses PostgreSQL database", tags=["project", "database"]) memory.store("API endpoints follow REST conventions", tags=["project", "api"]) ``` #### 2. Retrieve Memories ```python # Semantic search for relevant memories relevant = memory.recall( query="What database does the project use?", limit=5 ) for mem in relevant: print(f"Memory: {mem.content}") print(f"Relevance: {mem.score}") ``` #### 3. Memory Management ```python # Update memories memory.update( query="user programming language preference", new_content="The user now prefers Rust for systems programming" ) # Organize with collections memory.create_collection("current-project") memory.store( "Uses microservices architecture", collection="current-project" ) ``` ### Configuration ```json { "mcpServers": { "claude-memory": { "command": "npx", "args": ["-y", "@anthropic/mcp-memory"], "env": { "MEMORY_STORAGE": "~/.claude-memory", "EMBEDDING_MODEL": "text-embedding-3-small" } } } } ``` ### Use Cases **Personalization**: AI learns your coding style and preferences. **Project Knowledge**: Maintain project context across sessions. **Team Collaboration**: Share learned knowledge across team. The Claude Memory MCP Server brings persistent knowledge to Antigravity.

Installation

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

How to Use

  1. 11. Stores conversations locally in ~/claude-memory/
  2. 22. Retrieve context from past sessions
  3. 33. Privacy-focused local storage

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