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
Oracle Database
database

Oracle Database MCP Server

Official Oracle MCP server via SQLcl

oracledatabasesqlenterprise

About

## Oracle Database MCP Server: Enterprise Relational Database The **Oracle Database MCP Server** integrates Oracle Database into Google Antigravity, enabling enterprise database operations with PL/SQL, advanced analytics, and high availability directly from your development environment. ### Why Oracle MCP? - **Enterprise Leader**: Industry-leading enterprise database - **PL/SQL**: Powerful procedural language - **Advanced Features**: Partitioning, compression, in-memory - **High Availability**: RAC and Data Guard - **Security**: Advanced security features ### Key Features #### 1. SQL Queries ```python # Execute query result = await mcp.query(""" SELECT e.employee_id, e.first_name, e.last_name, d.department_name, e.salary FROM employees e JOIN departments d ON e.department_id = d.department_id WHERE e.hire_date > :hire_date ORDER BY e.salary DESC FETCH FIRST 20 ROWS ONLY """, params={"hire_date": "2020-01-01"}) for row in result: print(f"Employee: {row['first_name']} {row['last_name']}") ``` #### 2. PL/SQL Operations ```python # Execute PL/SQL block await mcp.execute(""" DECLARE v_bonus NUMBER; BEGIN SELECT salary * 0.10 INTO v_bonus FROM employees WHERE employee_id = :emp_id; UPDATE employees SET salary = salary + v_bonus WHERE employee_id = :emp_id; COMMIT; END; """, params={"emp_id": 100}) # Call stored procedure result = await mcp.call_procedure( name="calculate_commission", params={"p_employee_id": 100, "p_sales_amount": 50000} ) ``` #### 3. Transaction Management ```python # Begin transaction tx = await mcp.begin_transaction() try: await tx.execute("UPDATE accounts SET balance = balance - :amt WHERE id = :id", params={"amt": 100, "id": 1}) await tx.execute("UPDATE accounts SET balance = balance + :amt WHERE id = :id", params={"amt": 100, "id": 2}) await tx.commit() except Exception as e: await tx.rollback() raise ``` #### 4. Schema Operations ```python # Get tables tables = await mcp.query(""" SELECT table_name FROM user_tables ORDER BY table_name """) # Describe table columns = await mcp.query(""" SELECT column_name, data_type, nullable FROM user_tab_columns WHERE table_name = :table ORDER BY column_id """, params={"table": "EMPLOYEES"}) ``` ### Configuration ```json { "mcpServers": { "oracle": { "command": "npx", "args": ["-y", "@anthropic/mcp-oracle"], "env": { "ORACLE_CONNECTION_STRING": "host:1521/service", "ORACLE_USER": "your-user", "ORACLE_PASSWORD": "your-password" } } } } ``` ### Use Cases **Enterprise Apps**: Large-scale enterprise applications. **Financial Systems**: Banking and trading systems. **ERP Systems**: SAP and Oracle EBS backends. **Data Warehousing**: Analytical workloads. The Oracle MCP enables enterprise database operations within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "oracle": {
      "mcpServers": {
        "oracle": {
          "args": [
            "-mcp"
          ],
          "command": "sql"
        }
      }
    }
  }
}

How to Use

  1. 11. Requires Oracle SQLcl installed
  2. 22. Run sql -mcp to start MCP server
  3. 33. Also available in Oracle SQL Developer VS Code extension

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