npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

oracledb-mcp

v1.0.0

Published

MCP server for Oracle Database — query, describe tables, explore schemas. Multi-database support with thin client (no Oracle Instant Client needed).

Readme

oracledb-mcp

Oracle Database MCP (Model Context Protocol) server for AI assistants. Query, explore schemas, describe tables, and preview data across multiple Oracle databases simultaneously.

No Oracle Instant Client needed — uses thin client mode.

Features

  • Multi-database — Connect to multiple Oracle databases simultaneously
  • Thin client — No Oracle Instant Client needed (uses oracledb thin mode)
  • Read-only by default — Write operations require explicit opt-in
  • 5 tools: oracle_query, oracle_list_tables, oracle_describe_table, oracle_list_schemas, oracle_preview

Quick Start

With npx (no install)

ORACLE_DATABASES=mydb \
ORACLE_MYDB_HOST=hostname:1521/service \
ORACLE_MYDB_USER=scott \
ORACLE_MYDB_PASSWORD=tiger \
npx oracledb-mcp

With MCP Gateway

Add via the Gateway Admin UI → Browse → Oracle DB, or:

{
  "id": "oracle-db",
  "name": "Oracle Databases",
  "command": "npx",
  "args": ["-y", "oracle-db-mcp"],
  "env": {
    "ORACLE_DATABASES": "hr,finance",
    "ORACLE_HR_HOST": "db-host:1521/HRPROD",
    "ORACLE_HR_USER": "hr_reader",
    "ORACLE_HR_PASSWORD": "secret",
    "ORACLE_HR_LABEL": "HR Database",
    "ORACLE_FINANCE_HOST": "db-host:1521/FINPROD",
    "ORACLE_FINANCE_USER": "fin_reader",
    "ORACLE_FINANCE_PASSWORD": "secret",
    "ORACLE_FINANCE_LABEL": "Finance Database"
  }
}

With VS Code MCP settings

{
  "mcp": {
    "servers": {
      "oracle-db": {
        "command": "npx",
        "args": ["-y", "oracledb-mcp"],
        "env": {
          "ORACLE_DATABASES": "mydb",
          "ORACLE_MYDB_HOST": "hostname:1521/service",
          "ORACLE_MYDB_USER": "scott",
          "ORACLE_MYDB_PASSWORD": "tiger"
        }
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ORACLE_DATABASES | Yes | Comma-separated list of DB aliases (e.g. hr,finance,staging) | | ORACLE_{ALIAS}_HOST | Yes | Connection string: host:port/service_name | | ORACLE_{ALIAS}_USER | Yes | Database username | | ORACLE_{ALIAS}_PASSWORD | Yes | Database password | | ORACLE_{ALIAS}_LABEL | No | Human-readable label (defaults to alias) | | ORACLE_ALLOW_WRITE | No | Set to true to allow DML operations (default: false) | | ORACLE_MAX_ROWS | No | Maximum rows per query (default: 100) |

Tools

oracle_query

Execute SQL queries. Read-only by default.

oracle_list_tables

List tables, optionally filtered by schema and name pattern.

oracle_describe_table

Show table structure: columns, types, primary key, indexes, foreign keys.

oracle_list_schemas

List all schemas (users) that own tables.

oracle_preview

Preview first N rows of a table with optional WHERE and ORDER BY.

Build from Source

npm install
npm run build    # esbuild single-file bundle
npm start        # run the server

License

MIT