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
Sanity CMS
file-text

Sanity CMS MCP Server

Official Sanity headless CMS MCP server

sanitycmsheadlesscontentgroq

About

## Sanity CMS MCP Server: Real-Time Content Platform The **Sanity CMS MCP Server** integrates Sanity.io into Google Antigravity, enabling real-time content collaboration with GROQ queries, portable text, and live preview directly from your development environment. ### Why Sanity CMS MCP? - **Real-Time Collaboration**: Multiple editors working simultaneously - **GROQ Queries**: Powerful query language for content - **Portable Text**: Rich text that works everywhere - **CDN Delivery**: Global content delivery with asset pipeline - **Custom Studio**: Fully customizable editing experience ### Key Features #### 1. GROQ Queries ```python # Query documents result = await mcp.query(""" *[_type == "post" && status == "published"] | order(publishedAt desc) [0...10] { _id, title, slug, excerpt, "authorName": author->name, "categoryTitle": category->title, mainImage { asset-> { url } } } """) for post in result: print(f"Post: {post['title']}") ``` #### 2. Document Management ```python # Create document doc = await mcp.create( _type="post", title="New Post", slug={"current": "new-post"}, body=[ {"_type": "block", "children": [{"_type": "span", "text": "Content..."}]} ] ) # Update document await mcp.patch( id=doc["_id"], set={"title": "Updated Title"} ) # Delete document await mcp.delete(id="doc_123") ``` #### 3. Asset Management ```python # Upload image image = await mcp.upload_image( file_path="./images/cover.jpg" ) # Use in document await mcp.patch( id="post_123", set={ "mainImage": { "_type": "image", "asset": {"_ref": image["_id"]} } } ) ``` #### 4. Real-Time Listening ```python # Listen for changes async for event in mcp.listen( query="*[_type == 'post']", include_result=True ): print(f"Change: {event['transition']} - {event['result']['title']}") ``` ### Configuration ```json { "mcpServers": { "sanity": { "command": "npx", "args": ["-y", "@anthropic/mcp-sanity"], "env": { "SANITY_PROJECT_ID": "your-project-id", "SANITY_DATASET": "production", "SANITY_API_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Collaborative Editing**: Enable teams to edit content simultaneously. **Headless Commerce**: Build e-commerce with rich product content. **Media Sites**: Manage complex media relationships and assets. **Multi-Platform Apps**: Power apps with consistent content across platforms. The Sanity CMS MCP enables real-time content management within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "sanity": {
      "mcpServers": {
        "sanity": {
          "url": "https://mcp.sanity.io",
          "type": "streamable-http"
        }
      }
    }
  }
}

How to Use

  1. 11. Hosted server at mcp.sanity.io
  2. 22. Execute GROQ queries on your content
  3. 33. Schema-aware content management

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