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
NocoDB
table-2

NocoDB MCP Server

Open-source Airtable alternative

databasespreadsheetopen-source

About

## NocoDB MCP Server: Open Source Airtable Alternative The **NocoDB MCP Server** integrates NocoDB into Google Antigravity, enabling spreadsheet-database operations with REST APIs, automations, and self-hosting directly from your development environment. ### Why NocoDB MCP? - **Open Source**: Self-hostable Airtable alternative - **Database Backend**: Works with MySQL, PostgreSQL, SQL Server - **REST API**: Auto-generated APIs for all tables - **No-Code**: Spreadsheet interface for data management - **Extensible**: Webhooks and automations ### Key Features #### 1. Record Operations ```python # List records records = await mcp.list_records( table="Projects", limit=50, offset=0, where="(Status,eq,Active)", sort="-CreatedAt" ) for record in records["list"]: print(f"Project: {record['Name']}") # Get single record record = await mcp.get_record(table="Projects", id=123) ``` #### 2. Record Management ```python # Create record record = await mcp.create_record( table="Projects", data={ "Name": "New Project", "Status": "Planning", "DueDate": "2024-03-15", "Owner": "user@example.com" } ) # Update record await mcp.update_record( table="Projects", id=record["Id"], data={"Status": "In Progress"} ) # Delete record await mcp.delete_record(table="Projects", id=record["Id"]) ``` #### 3. Bulk Operations ```python # Bulk create records = await mcp.bulk_create( table="Tasks", records=[ {"Name": "Task 1", "ProjectId": 123}, {"Name": "Task 2", "ProjectId": 123}, {"Name": "Task 3", "ProjectId": 123} ] ) # Bulk update await mcp.bulk_update( table="Tasks", records=[ {"Id": 1, "Status": "Done"}, {"Id": 2, "Status": "Done"} ] ) ``` #### 4. Schema Operations ```python # List tables tables = await mcp.list_tables(base="MyBase") for table in tables: print(f"Table: {table['title']}") # Get table schema schema = await mcp.get_table_schema(table="Projects") for column in schema["columns"]: print(f"Column: {column['title']} ({column['uidt']})") ``` ### Configuration ```json { "mcpServers": { "nocodb": { "command": "npx", "args": ["-y", "@anthropic/mcp-nocodb"], "env": { "NOCODB_URL": "https://your-nocodb-instance.com", "NOCODB_API_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Project Tracking**: Manage projects with spreadsheet simplicity. **Data Collection**: Collect and organize data from forms. **Internal Tools**: Build simple internal applications. **Legacy Integration**: Add APIs to existing databases. The NocoDB MCP enables no-code database operations within your development environment.

Installation

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

How to Use

  1. 1Deploy NocoDB instance
  2. 2Get API token
  3. 3Manage bases and tables

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