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 FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver ToolsFeatured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver Tools

© 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
Matrix MCP
🔐

Matrix MCP MCP Server

Decentralized communication protocol for secure messaging.

matrixchatdecentralizedsecure

About

## Matrix Chat MCP Server: Decentralized Communication The **Matrix Chat MCP Server** integrates the Matrix protocol into Google Antigravity. This enables building on an open, decentralized communication network with end-to-end encryption and federation across servers. ### Why Matrix MCP? Matrix offers true decentralization: - **Federated**: Connect across servers - **End-to-End Encrypted**: Private by default - **Open Standard**: No vendor lock-in - **Bridging**: Connect to other platforms - **Self-Hosted**: Full data ownership ### Key Features #### 1. Send Messages ```python from nio import AsyncClient client = AsyncClient("https://matrix.example.com", "@bot:example.com") await client.login("password") # Send message await client.room_send( room_id="!room:example.com", message_type="m.room.message", content={ "msgtype": "m.text", "body": "Deployment complete! :rocket:" } ) ``` #### 2. Room Management ```python # Create room response = await client.room_create( name="Project Alpha", topic="Project Alpha discussions", is_direct=False ) # Invite users await client.room_invite(room_id, "@user:example.com") # Set room state await client.room_put_state( room_id, "m.room.topic", {"topic": "Updated topic"} ) ``` #### 3. End-to-End Encryption ```python from nio import AsyncClient, ClientConfig config = ClientConfig( encryption_enabled=True, store_sync_tokens=True ) client = AsyncClient("https://matrix.example.com", "@bot:example.com", config=config) # Encrypted messaging works automatically await client.room_send( room_id="!encrypted:example.com", message_type="m.room.message", content={"msgtype": "m.text", "body": "This is encrypted!"} ) ``` ### Configuration ```json { "mcpServers": { "matrix-chat": { "command": "npx", "args": ["-y", "@anthropic/mcp-matrix"], "env": { "MATRIX_HOMESERVER": "https://matrix.example.com", "MATRIX_USER": "@bot:example.com", "MATRIX_PASSWORD": "password" } } } } ``` ### Use Cases **Privacy-First Chat**: Encrypted team communication. **Federated Bots**: Bots that work across servers. **Bridge Integrations**: Connect to Slack, Discord, etc. The Matrix MCP Server brings decentralized chat to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "matrix-chat": {}
  }
}

How to Use

    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