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
Decap CMS MCP
📄

Decap CMS MCP MCP Server

Open-source Git-based CMS (formerly Netlify CMS).

decapgitcmsmarkdown

About

## Decap CMS MCP Server: Git-Based Content Management The **Decap CMS MCP Server** (formerly Netlify CMS) integrates Decap CMS into Google Antigravity, enabling Git-based content management with editorial workflows, media handling, and static site integration directly from your development environment. ### Why Decap CMS MCP? - **Git-Based**: Content stored in Git repositories for version control - **Open Source**: Self-hosted with no vendor lock-in - **Editorial Workflow**: Draft, review, and publish workflows - **Framework Agnostic**: Works with any static site generator - **Real-Time Preview**: Preview changes before committing ### Key Features #### 1. Content Operations ```python # Get content entry entry = await mcp.get_entry( collection="blog", slug="my-first-post" ) print(f"Title: {entry['data']['title']}") print(f"Body: {entry['body']}") # List entries entries = await mcp.list_entries( collection="blog", filter={"status": "published"} ) ``` #### 2. Entry Management ```python # Create entry entry = await mcp.create_entry( collection="blog", data={ "title": "New Post", "date": "2024-01-15", "author": "John Doe", "draft": True }, body="Post content in markdown..." ) # Update entry await mcp.update_entry( collection="blog", slug="new-post", data={"draft": False} ) ``` #### 3. Media Management ```python # Upload media media = await mcp.upload_media( file_path="./images/cover.jpg", folder="uploads/blog" ) print(f"Path: {media['path']}") # List media files = await mcp.list_media(folder="uploads") ``` #### 4. Workflow Operations ```python # Submit for review await mcp.set_status( collection="blog", slug="new-post", status="pending_review" ) # Publish entry await mcp.publish_entry( collection="blog", slug="new-post" ) ``` ### Configuration ```json { "mcpServers": { "decap": { "command": "npx", "args": ["-y", "@anthropic/mcp-decap"], "env": { "DECAP_REPO": "owner/repo", "DECAP_BRANCH": "main", "GITHUB_TOKEN": "your-github-token" } } } } ``` ### Use Cases **JAMstack Sites**: Manage content for static sites built with Hugo, Jekyll, or Gatsby. **Documentation**: Maintain documentation with Git-backed version history. **Blog Platforms**: Run blogs with editorial workflows and scheduled publishing. **Open Source Projects**: Enable non-technical contributors to edit content. The Decap CMS MCP enables Git-based content management within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "decap": {}
  }
}

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