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
Baserow
table

Baserow MCP Server

Open-source Airtable alternative

databaseno-codeopen-source

About

## Baserow MCP Server: Open Source No-Code Database The **Baserow MCP Server** integrates Baserow into Google Antigravity, enabling no-code database operations with spreadsheet-like interface, API access, and self-hosting directly from your development environment. ### Why Baserow MCP? - **Open Source**: Self-hostable Airtable alternative - **No-Code**: Spreadsheet interface for non-developers - **API-First**: Full REST API access - **Real-Time**: Live collaboration and updates - **Extensible**: Plugin system for customization ### Key Features #### 1. Row Operations ```python # List rows rows = await mcp.list_rows( table_id=123, size=50, search="project", order_by="field_456", filter={ "field_789": {"contains": "active"} } ) for row in rows["results"]: print(f"Row: {row['field_123']}") # Get single row row = await mcp.get_row(table_id=123, row_id=456) ``` #### 2. Row Management ```python # Create row row = await mcp.create_row( table_id=123, data={ "field_name": "New Project", "field_status": "Planning", "field_due_date": "2024-03-15", "field_assignee": [1, 2] # Link to other rows } ) # Update row await mcp.update_row( table_id=123, row_id=row["id"], data={"field_status": "In Progress"} ) # Delete row await mcp.delete_row(table_id=123, row_id=row["id"]) ``` #### 3. Batch Operations ```python # Batch create rows = await mcp.batch_create_rows( table_id=123, rows=[ {"field_name": "Task 1"}, {"field_name": "Task 2"}, {"field_name": "Task 3"} ] ) # Batch update await mcp.batch_update_rows( table_id=123, rows=[ {"id": 1, "field_status": "Done"}, {"id": 2, "field_status": "Done"} ] ) ``` #### 4. Schema Operations ```python # List tables tables = await mcp.list_tables(database_id=1) for table in tables: print(f"Table: {table['name']}") # Get fields fields = await mcp.list_fields(table_id=123) for field in fields: print(f"Field: {field['name']} ({field['type']})") # Create field await mcp.create_field( table_id=123, name="Priority", field_type="single_select", options=["High", "Medium", "Low"] ) ``` ### Configuration ```json { "mcpServers": { "baserow": { "command": "npx", "args": ["-y", "@anthropic/mcp-baserow"], "env": { "BASEROW_URL": "https://api.baserow.io", "BASEROW_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Project Management**: Track projects without complex setup. **Data Collection**: Collect and organize data from various sources. **Internal Tools**: Build simple internal applications. **Prototyping**: Quickly prototype data-driven applications. The Baserow MCP enables no-code database operations within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "baserow": {
      "mcpServers": {
        "baserow": {
          "env": {
            "BASEROW_URL": "https://api.baserow.io",
            "BASEROW_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "baserow-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get Baserow API token
  2. 2Configure database URL
  3. 3Manage 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