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
Contentful
database

Contentful MCP Server

Official Contentful CMS MCP server

contentfulcmsheadlesscontentapi

About

## Contentful MCP Server: Enterprise Content Platform The **Contentful MCP Server** integrates Contentful into Google Antigravity, enabling enterprise content management with structured content, rich text, and multi-environment support directly from your development environment. ### Why Contentful MCP? - **Structured Content**: Content modeling with relationships and validations - **Rich Text**: Powerful rich text editor with embedded entries - **Environments**: Sandbox environments for safe development - **Localization**: Built-in multi-language support - **Enterprise Ready**: SSO, audit logs, and compliance features ### Key Features #### 1. Content Queries ```python # Get entries entries = await mcp.get_entries( content_type="blogPost", query={ "fields.status": "published", "order": "-fields.publishedAt", "limit": 10, "include": 2 # Include linked entries } ) for entry in entries["items"]: print(f"Title: {entry['fields']['title']}") # Get single entry entry = await mcp.get_entry( entry_id="entry123", include=2 ) ``` #### 2. Entry Management ```python # Create entry entry = await mcp.create_entry( content_type="blogPost", fields={ "title": {"en-US": "New Post"}, "body": {"en-US": {...}}, # Rich text "author": {"en-US": {"sys": {"type": "Link", "linkType": "Entry", "id": "author123"}}} } ) # Update entry await mcp.update_entry( entry_id=entry["sys"]["id"], version=entry["sys"]["version"], fields={"title": {"en-US": "Updated Title"}} ) # Publish entry await mcp.publish_entry( entry_id=entry["sys"]["id"], version=2 ) ``` #### 3. Asset Operations ```python # Upload asset asset = await mcp.create_asset( title={"en-US": "Cover Image"}, file={"en-US": {"fileName": "cover.jpg", "contentType": "image/jpeg"}}, file_path="./images/cover.jpg" ) # Process and publish asset await mcp.process_asset(asset_id=asset["sys"]["id"]) await mcp.publish_asset(asset_id=asset["sys"]["id"]) ``` #### 4. Environment Operations ```python # List environments envs = await mcp.get_environments() for env in envs["items"]: print(f"Environment: {env['name']}") # Create environment new_env = await mcp.create_environment( name="staging", source_environment_id="master" ) ``` ### Configuration ```json { "mcpServers": { "contentful": { "command": "npx", "args": ["-y", "@anthropic/mcp-contentful"], "env": { "CONTENTFUL_SPACE_ID": "your-space-id", "CONTENTFUL_MANAGEMENT_TOKEN": "your-management-token", "CONTENTFUL_ENVIRONMENT": "master" } } } } ``` ### Use Cases **Enterprise Websites**: Power global enterprise sites with localized content. **Multi-Channel Publishing**: Deliver content to web, mobile, IoT devices. **Content Operations**: Manage complex editorial workflows and approvals. **Microservices**: Provide content layer for microservices architectures. The Contentful MCP enables enterprise content management within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "contentful": {
      "mcpServers": {
        "contentful": {
          "env": {
            "CONTENTFUL_SPACE_ID": "YOUR_SPACE_ID",
            "CONTENTFUL_ACCESS_TOKEN": "YOUR_CONTENTFUL_TOKEN"
          },
          "args": [
            "-y",
            "@contentful/mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Get access token and space ID from Contentful
  2. 22. Fetch content types and entries
  3. 33. Manage content through AI

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