Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge Oracle Database mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.
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.
Frag einfach
Beispiel-Prompts für Oracle Database
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → Oracle Database klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Oracle Database + Claude
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.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
ORACLE_HOST, ORACLE_PORT, ORACLE_DATABASE, ORACLE_USER, ORACLE_PASSWORD
Schritt 1 — Zugangsdaten holen
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)
Schritt 2 — Adapter installieren
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
Schritt 3 — Connector in Claude hinzufügen
Empfohlener Weg — funktioniert auf claude.ai web ohne Anfassen einer Konfigurationsdatei.
- Öffne claude.ai/customize/connectors.
- Klicke "Add custom connector".
- Trage ein:
- Name:
Oracle Database - URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer Token → MCP-API-Key einfügen (aus AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Klicke Connect zum Autorisieren.
Alle unten gelisteten Tools erscheinen in deinem Chat — leg los mit Prompts.
Verfügbare Tools
| 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
Funktioniert es mit Claude Code genauso wie mit Claude Desktop? Ja — beide auf https://cloud.anythingmcp.com/mcp zeigen lassen.
Nächste Schritte
War dieser Guide hilfreich?