Connector guide2-minute read5 MCP toolsEN · DE · IT

Cómo conectar Oracle Database a Gemini — via MCP

Query an Oracle database directly: list tables, describe columns and run read-only SQL. Installs read-only; credentials are held encrypted rather than in the connection string.

HCBy HelpCode teamActualizado 2 min read Código abierto en GitHub

Sin tarjeta de crédito · 7 días de prueba · Alternativa self-host disponible

Oracle Database

Oracle Database

Query an Oracle database directly: list tables, describe columns and run read-only SQL. Installs read-only; credentials are held encrypted rather than in the connection string.

herramientas

5

Región

INTL

Categoría

Databases

Autenticación

Connection string

Env vars requeridas

ORACLE_HOSTORACLE_PORTORACLE_DATABASEORACLE_USERORACLE_PASSWORD
Instalar con un clic en Cloud

7 días de prueba gratis · Sin tarjeta de crédito

  • Prueba gratis de 7 días
    Sin tarjeta de crédito
  • GDPR & SOC 2 ready
    Datos en la UE, registros de auditoría
  • Código abierto en GitHub
    Open source · AGPL-3.0
  • Funciona con ChatGPT, Claude, Gemini
    Cualquier cliente compatible con MCP

Sáltate la instalación. Funcionando en menos de 2 minutos.

Inicia una prueba gratuita en cloud.anythingmcp.com, añade Oracle Database con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.

Empezar prueba gratis

Summary

Query an Oracle database directly: list tables, describe columns and run read-only SQL. Installs read-only; credentials are held encrypted rather than in the connection string.

Prueba a pedir

Prompts de ejemplo para Oracle Database

Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.

Oracle Database · live vía MCP
Compartir
Opus 4.7

Claude es IA y puede equivocarse. Verifica siempre las respuestas.

💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Oracle Database, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin git clone, sin servidor local.

Oracle Database + Gemini

Query an Oracle database directly: list tables, describe columns and run read-only SQL. Installs read-only; credentials are held encrypted rather than in the connection string.

Requisitos previos

Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:

ORACLE_HOST, ORACLE_PORT, ORACLE_DATABASE, ORACLE_USER, ORACLE_PASSWORD

Paso 1 — Obtener credenciales

Setup

  1. Create a user with only CREATE SESSION and the SELECTs it needs:
    CREATE USER amcp_reader IDENTIFIED BY "change-me";
    GRANT CREATE SESSION TO amcp_reader;
    GRANT SELECT ON sales.orders TO amcp_reader;
    -- or, for a whole schema, a read-only role you maintain
    
  2. Set ORACLE_HOST, ORACLE_PORT (1521), ORACLE_DATABASE — the service name (e.g. ORCLPDB1), not the SID — plus ORACLE_USER and ORACLE_PASSWORD.

The node-oracledb driver needs to be in thin mode or have Instant Client available. Thin mode covers Oracle 12.1 and newer with no client install; an older server needs Instant Client on the AnythingMCP host.

…(continued in the in-app connector instructions)

Paso 2 — Instalar el adapter

curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d

Paso 3 — Añadir el conector en Gemini

Gemini CLI lee servidores MCP desde ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json en Windows). Añade:

{
  "mcpServers": {
    "anythingmcp": {
      "httpUrl": "https://cloud.anythingmcp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
    }
  }
}
  1. Obtén tu MCP API key desde AnythingMCP → Perfil → MCP API Keys → Nueva Key.
  2. Guarda el archivo y reinicia gemini.
  3. Ejecuta /mcp en la Gemini CLI — Oracle Database debería aparecer como disponible.
  4. Vertex AI Studio: pasa https://cloud.anythingmcp.com/mcp al array tools de tu petición con el mismo header Bearer.

Herramientas disponibles

ToolWhat it does
oracle_list_tablesList the tables and views in the database with their schema and, where the server tracks it, an approximate row count
oracle_describe_tableDescribe one table: every column with its data type, nullability and default
oracle_find_columnsFind columns across every table whose name matches a pattern — the fast way to locate where customer e-mail addresses, IBANs or order number
oracle_queryRun a read-only SQL statement against Oracle Database and return up to 1000 rows
oracle_query_examplesShow worked example queries for Oracle Database: how to list schemas, find large tables, inspect indexes and check what is running right now

FAQ

¿Gemini 1.5 Pro o 2.x soportan MCP? Sí — Gemini CLI ≥ 0.4 y la API de tools de Vertex AI aceptan conectores MCP httpUrl con header Bearer.

Siguientes pasos

¿Te ha sido útil esta guía?

Your Oracle Database agent is one click away.

Install the connector, paste the key, prompt Gemini. Free for 7 days, no credit card.

Guías relacionadas