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
Penpot MCP Server
layout

Penpot MCP Server MCP Server

Open-source design platform integration

penpotdesignopen-sourceprototyping

About

## Penpot MCP Server: Open Source Design Platform The **Penpot MCP Server** integrates Penpot into Google Antigravity, enabling open source design operations with component access, asset export, and design system management directly from your development environment. ### Why Penpot MCP? - **Open Source**: Self-hostable design platform - **SVG Native**: SVG-first approach for web - **Components**: Reusable design components - **Collaboration**: Real-time team collaboration - **No Vendor Lock-in**: Own your design files ### Key Features #### 1. Project Operations ```python # List projects projects = await mcp.list_projects(team_id="team_123") for project in projects: print(f"Project: {project['name']}") # Get project files files = await mcp.list_files(project_id="proj_123") for file in files: print(f"File: {file['name']} - Modified: {file['modified_at']}") ``` #### 2. Component Access ```python # Get components components = await mcp.get_components(file_id="file_123") for comp in components: print(f"Component: {comp['name']}") # Get component instance instance = await mcp.get_component( file_id="file_123", component_id="comp_456" ) print(f"Name: {instance['name']}") print(f"Properties: {instance['properties']}") ``` #### 3. Export Operations ```python # Export as SVG svg = await mcp.export_svg( file_id="file_123", object_id="obj_789" ) # Export as PNG await mcp.export_png( file_id="file_123", object_id="obj_789", scale=2, output_path="/exports/icon.png" ) # Export page await mcp.export_page( file_id="file_123", page_id="page_1", format="pdf", output_path="/exports/design.pdf" ) ``` #### 4. Design Tokens ```python # Extract colors colors = await mcp.get_colors(file_id="file_123") for color in colors: print(f"Color: {color['name']} - {color['color']}") # Extract typography typography = await mcp.get_typography(file_id="file_123") for text in typography: print(f"Text: {text['name']} - {text['font_family']}") ``` ### Configuration ```json { "mcpServers": { "penpot": { "command": "npx", "args": ["-y", "@anthropic/mcp-penpot"], "env": { "PENPOT_URL": "https://design.penpot.app", "PENPOT_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Open Source Projects**: Design tools for open source teams. **Self-Hosted Design**: Host your own design platform. **Asset Generation**: Export design assets automatically. **Design Systems**: Manage open source design systems. The Penpot MCP enables open source design operations within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "penpot": {
      "mcpServers": {
        "penpot": {
          "env": {
            "PENPOT_URL": "https://design.penpot.app",
            "PENPOT_ACCESS_TOKEN": "YOUR_TOKEN"
          },
          "args": [
            "penpot-mcp"
          ],
          "command": "uvx"
        }
      }
    }
  }
}

How to Use

  1. 1Self-hosted or Penpot Cloud
  2. 2Get access token from Penpot
  3. 3Open-source alternative to Figma

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