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.
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.
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 + ChatGPT
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
- 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 - Set
ORACLE_HOST,ORACLE_PORT(1521),ORACLE_DATABASE— the service name (e.g.ORCLPDB1), not the SID — plusORACLE_USERandORACLE_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 ChatGPT
ChatGPT soporta servidores MCP a través de la función Connectors (planes Plus / Pro / Team / Enterprise). El plan gratuito no admite conectores personalizados.
- Abre ChatGPT → Settings → Connectors (o pulsa el icono 🔧 en el composer → Manage connectors).
- Pulsa "Add custom connector".
- Rellena:
- Name:
Oracle Database - MCP server URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → pega tu MCP API key (de AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Pulsa Connect para autorizar.
Herramientas disponibles
| Tool | What it does |
|---|---|
oracle_list_tables | List the tables and views in the database with their schema and, where the server tracks it, an approximate row count |
oracle_describe_table | Describe one table: every column with its data type, nullability and default |
oracle_find_columns | Find columns across every table whose name matches a pattern — the fast way to locate where customer e-mail addresses, IBANs or order number |
oracle_query | Run a read-only SQL statement against Oracle Database and return up to 1000 rows |
oracle_query_examples | Show worked example queries for Oracle Database: how to list schemas, find large tables, inspect indexes and check what is running right now |
FAQ
¿Funciona el plan gratuito de ChatGPT con los Connectors MCP personalizados? No — se necesita Plus, Pro, Team o Enterprise.
Siguientes pasos
¿Te ha sido útil esta guía?