O

Oracle Database

Connects to Oracle databases for queries and data operations.

Oracle·No reviews yet
Repo
Share:

About

Connects to Oracle databases for queries and data operations.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Oracle Database.

What is the primary function of the Oracle Database MCP?
The Oracle Database MCP provides connectivity to Oracle databases. It enables users to perform queries and various data operations directly against an Oracle database instance.
How do I install this MCP in a client like Cline or Claude Desktop?
Installation in clients like Cline or Claude Desktop typically involves adding the MCP's repository URL within the client's settings. The client will then handle the download and integration of the Oracle Database MCP.
Does the Oracle Database MCP require an API key or other credentials to function?
The Oracle Database MCP itself does not require an API key. However, accessing an Oracle database instance will necessitate valid database credentials such as a username and password.
What kind of operations can I perform with the Oracle Database MCP?
This MCP supports standard database operations including executing SQL queries for data retrieval and manipulation. It facilitates direct interaction with your Oracle database for common tasks.
Are there any licensing costs associated with using the Oracle Database MCP?
The Oracle Database MCP itself is open-source and available on GitHub, implying no direct cost for the connector. However, licensing costs for the underlying Oracle Database server depend on your Oracle deployment and agreements.
What is a prerequisite for using this Oracle Database MCP?
A prerequisite for using this MCP is an accessible and properly configured Oracle Database instance. You must have network connectivity to the database and valid credentials for authentication.

Install Oracle Database

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "oracle-database": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-oracle-database"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "oracle-database": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-oracle-database"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "oracle-database": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-oracle-database"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.