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_USEROracle user name
ORACLE_PASSWORDsecretOracle 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 connectionStringRelated MCP servers
MCP server for interacting with PostgreSQL databases
View repository →