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
Appsmith
layout

Appsmith MCP Server

Open-source internal tools

toolsopen-sourceinternal

About

## Appsmith MCP Server: Low-Code Application Builder The **Appsmith MCP Server** integrates Appsmith into Google Antigravity, enabling low-code application development with widgets, datasources, and deployment automation directly from your development environment. ### Why Appsmith MCP? - **Low-Code**: Build apps with drag-and-drop widgets - **Data Connectors**: Connect to databases and APIs - **JavaScript**: Full JavaScript support for logic - **Git Sync**: Version control your applications - **Self-Hosted**: Deploy on your infrastructure ### Key Features #### 1. Application Management ```python # List applications apps = await mcp.list_applications(workspace_id="ws_123") for app in apps: print(f"App: {app['name']} - {app['slug']}") # Get application app = await mcp.get_application(app_id="app_456") print(f"Pages: {len(app['pages'])}") # Create application new_app = await mcp.create_application( workspace_id="ws_123", name="Customer Dashboard" ) ``` #### 2. Page Operations ```python # List pages pages = await mcp.list_pages(app_id="app_456") for page in pages: print(f"Page: {page['name']}") # Create page page = await mcp.create_page( app_id="app_456", name="Settings", layout_id="layout_default" ) # Update page await mcp.update_page( page_id=page["id"], dsl={"widgets": [...]} ) ``` #### 3. Datasource Operations ```python # List datasources datasources = await mcp.list_datasources(workspace_id="ws_123") # Create PostgreSQL datasource ds = await mcp.create_datasource( workspace_id="ws_123", name="Production DB", plugin_id="postgres-plugin", config={ "host": "db.example.com", "port": 5432, "database": "myapp" } ) # Test datasource result = await mcp.test_datasource(datasource_id=ds["id"]) ``` #### 4. Deployment ```python # Deploy application await mcp.deploy(app_id="app_456") # Get deployment URL deployment = await mcp.get_deployment(app_id="app_456") print(f"URL: {deployment['url']}") # Export application await mcp.export_application( app_id="app_456", output_path="/exports/app.json" ) ``` ### Configuration ```json { "mcpServers": { "appsmith": { "command": "npx", "args": ["-y", "@anthropic/mcp-appsmith"], "env": { "APPSMITH_URL": "https://your-appsmith-instance.com", "APPSMITH_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Internal Tools**: Build admin panels and dashboards. **CRUD Apps**: Create data management applications. **Workflows**: Build workflow automation interfaces. **Prototyping**: Rapidly prototype application ideas. The Appsmith MCP enables low-code development within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "appsmith": {
      "mcpServers": {
        "appsmith": {
          "env": {
            "APPSMITH_URL": "https://your-appsmith.com",
            "APPSMITH_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "appsmith-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Deploy Appsmith instance
  2. 2Get API key
  3. 3Build internal apps

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