Connector guide2-minute read5 MCP toolsEN · DE · IT

Come collegare Oracle Database a Cursor — 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 teamAggiornato 2 min read Open source su GitHub

Nessuna carta di credito · 7 giorni di prova · Alternativa self-host disponibile

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.

tool

5

Regione

INTL

Categoria

Databases

Autenticazione

Connection string

Env vars richieste

ORACLE_HOSTORACLE_PORTORACLE_DATABASEORACLE_USERORACLE_PASSWORD
Installa con un clic su Cloud

7 giorni di prova gratuita · Nessuna carta di credito

  • Prova gratuita di 7 giorni
    Nessuna carta di credito
  • GDPR & SOC 2 ready
    Dati in UE, log di audit
  • Open source su GitHub
    Open source · AGPL-3.0
  • Funziona con ChatGPT, Claude, Gemini
    Qualsiasi client compatibile MCP

Salta l'installazione. Attivo in meno di 2 minuti.

Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi Oracle Database con un clic, poi punta il tuo client AI (Claude, ChatGPT, Copilot o Cursor) all'endpoint MCP generato. Niente Docker, niente git clone, nessuna esperienza di sviluppo richiesta.

Inizia la prova gratuita

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.

Prova a chiedere

Prompt di esempio per Oracle Database

Clicca su un prompt per copiarlo. Incollalo in Claude, ChatGPT, Cursor, Gemini, Copilot o OpenClaw per eseguirlo contro questo connettore.

Oracle Database · live via MCP
Condividi
Opus 4.7

Claude è un'AI e può sbagliare. Verifica sempre le risposte.

💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → Oracle Database, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente git clone, niente server locale.

Oracle Database + Cursor

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.

Prerequisiti

Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:

ORACLE_HOST, ORACLE_PORT, ORACLE_DATABASE, ORACLE_USER, ORACLE_PASSWORD

Step 1 — Ottieni le credenziali

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)

Step 2 — Installa l'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

Step 3 — Aggiungi il connettore in Cursor

Cursor legge i server MCP da ~/.cursor/mcp.json. Aggiungi questa voce:

{
  "mcpServers": {
    "anythingmcp": {
      "url": "https://cloud.anythingmcp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
    }
  }
}
  1. Ottieni la tua MCP API key da AnythingMCP → Profilo → MCP API Keys → Nuova Key.
  2. Salva il file e riavvia Cursor.
  3. Apri Cursor → Impostazioni → MCP per verificare che Oracle Database sia presente e "Connected".
  4. Inizia a chattare — tutti gli strumenti di Oracle Database sono ora invocabili.

Tool disponibili

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

Cursor supporta MCP server personalizzati nel piano free? Sì — MCP è disponibile su Hobby, Pro e Business.

Prossimi passi

Questa guida ti è stata utile?

Your Oracle Database agent is one click away.

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

Guide correlate