PluginBench
MCP Server

io.github.marcelo-ochoa/oracle MCP Server

io.github.marcelo-ochoa/oracle

What is the io.github.marcelo-ochoa/oracle MCP server?

MCP server for interacting with Oracle databases

How to install io.github.marcelo-ochoa/oracle

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • ORACLE_USER

    Oracle user name

  • ORACLE_PASSWORD
    secret

    Oracle password

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "oracle": {
      "command": "npx",
      "args": [
        "-y",
        "@marcelo-ochoa/server-oracle",
        "connectionString"
      ],
      "env": {
        "ORACLE_USER": "<YOUR_ORACLE_USER>",
        "ORACLE_PASSWORD": "<YOUR_ORACLE_PASSWORD>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "oracle": {
      "command": "npx",
      "args": [
        "-y",
        "@marcelo-ochoa/server-oracle",
        "connectionString"
      ],
      "env": {
        "ORACLE_USER": "<YOUR_ORACLE_USER>",
        "ORACLE_PASSWORD": "<YOUR_ORACLE_PASSWORD>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "oracle": {
      "command": "npx",
      "args": [
        "-y",
        "@marcelo-ochoa/server-oracle",
        "connectionString"
      ],
      "env": {
        "ORACLE_USER": "<YOUR_ORACLE_USER>",
        "ORACLE_PASSWORD": "<YOUR_ORACLE_PASSWORD>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "oracle": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@marcelo-ochoa/server-oracle",
        "connectionString"
      ],
      "env": {
        "ORACLE_USER": "<YOUR_ORACLE_USER>",
        "ORACLE_PASSWORD": "<YOUR_ORACLE_PASSWORD>"
      }
    }
  }
}
Claude Code
claude mcp add oracle --env ORACLE_USER=<YOUR_ORACLE_USER> --env ORACLE_PASSWORD=<YOUR_ORACLE_PASSWORD> -- npx -y @marcelo-ochoa/server-oracle connectionString

Related MCP servers

MCP server for MikroTik RouterOS API

View repository →

An MCP server for MySQL databases.

View repository →

MCP server for interacting with PostgreSQL databases

View repository →