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
Payload CMS MCP
📦

Payload CMS MCP MCP Server

TypeScript headless CMS and application framework.

payloadcmstypescriptheadless

About

## Payload CMS MCP Server: TypeScript-First Headless CMS The **Payload CMS MCP Server** integrates Payload CMS into Google Antigravity, enabling code-first content management with TypeScript types, access control, and self-hosting directly from your development environment. ### Why Payload CMS MCP? - **TypeScript Native**: Full type safety from schema to API - **Self-Hosted**: Complete control with no vendor lock-in - **Access Control**: Powerful field-level access control - **Versions & Drafts**: Built-in versioning and draft system - **Local API**: Direct database access without HTTP overhead ### Key Features #### 1. Collection Queries ```python # Find documents posts = await mcp.find( collection="posts", where={"status": {"equals": "published"}}, sort="-publishedAt", limit=10, depth=2 # Populate relationships ) for post in posts["docs"]: print(f"Post: {post['title']}") # Find by ID post = await mcp.find_by_id( collection="posts", id="post_123", depth=1 ) ``` #### 2. CRUD Operations ```python # Create document post = await mcp.create( collection="posts", data={ "title": "New Post", "content": [...], # Rich text content "author": "author_123", "_status": "draft" } ) # Update document await mcp.update( collection="posts", id=post["id"], data={"_status": "published"} ) # Delete document await mcp.delete(collection="posts", id="post_123") ``` #### 3. Media Operations ```python # Upload media media = await mcp.upload_media( collection="media", file_path="./images/cover.jpg", data={ "alt": "Cover image", "caption": "Article cover" } ) # Get media with sizes media = await mcp.find_by_id( collection="media", id=media["id"] ) print(f"Thumbnail: {media['sizes']['thumbnail']['url']}") ``` #### 4. Global Operations ```python # Get global settings = await mcp.find_global(slug="site-settings") print(f"Site Name: {settings['siteName']}") # Update global await mcp.update_global( slug="site-settings", data={"maintenanceMode": True} ) ``` ### Configuration ```json { "mcpServers": { "payload": { "command": "npx", "args": ["-y", "@anthropic/mcp-payload"], "env": { "PAYLOAD_API_URL": "https://your-payload-app.com/api", "PAYLOAD_API_KEY": "your-api-key" } } } } ``` ### Use Cases **TypeScript Projects**: Build content-driven apps with end-to-end type safety. **SaaS Applications**: Power multi-tenant SaaS with custom schemas. **E-commerce**: Manage products with complex variant structures. **Internal Tools**: Build admin dashboards with granular permissions. The Payload CMS MCP enables TypeScript-first content management within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "payload": {}
  }
}

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