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

doris-mcp-server

v1.0.3

Published

Apache Doris MCP Server - TypeScript implementation using MySQL protocol

Readme

doris-mcp-server

Apache Doris MCP Server implemented in TypeScript.

Connects to Apache Doris via the MySQL-compatible protocol (port 9030) and exposes the same tool interface as the official apache/doris-mcp-server, with zero Python dependencies.

Requirements

  • Node.js >= 18
  • Apache Doris (any version with MySQL protocol enabled, default port 9030)

Installation

npm install -g doris-mcp-server

Usage

Stdio mode (for MCP clients like Cursor, Kiro, Claude Desktop)

doris-mcp-server \
  --db-host 127.0.0.1 \
  --db-port 9030 \
  --db-user root \
  --db-password your_password

Environment variables

export DORIS_HOST=127.0.0.1
export DORIS_PORT=9030
export DORIS_USER=root
export DORIS_PASSWORD=your_password
export DORIS_DATABASE=information_schema

doris-mcp-server

MCP client configuration (Kiro / Cursor)

{
  "mcpServers": {
    "doris": {
      "command": "doris-mcp-server",
      "args": [
        "--db-host", "127.0.0.1",
        "--db-port", "9030",
        "--db-user", "root",
        "--db-password", "your_password"
      ]
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | exec_query | Execute a SQL query and return results as JSON | | get_catalog_list | List all catalogs | | get_db_list | List all databases | | get_db_table_list | List all tables in a database | | get_table_schema | Get column definitions for a table | | get_table_comment | Get the table-level comment | | get_table_column_comments | Get comments for all columns in a table | | get_table_indexes | Get index information for a table | | get_recent_audit_logs | Query recent audit log records | | get_sql_explain | Get the execution plan for a SQL query | | get_table_data_size | Get data size information for a table or database |

All metadata tools support optional db_name and catalog_name parameters for multi-catalog environments.

Command Line Arguments

| Argument | Description | Default | |----------|-------------|---------| | --db-host | Doris FE host | 127.0.0.1 | | --db-port | Doris MySQL port | 9030 | | --db-user | Database username | root | | --db-password | Database password | (empty) | | --db-database | Default database | information_schema |

Comparison with official Python server

| Feature | This package | apache/doris-mcp-server | |---------|-------------|------------------------| | Language | TypeScript / Node.js | Python | | Transport | stdio | stdio + HTTP | | Core query tools | All 11 | All 11+ | | Advanced analytics | No | Yes (7 tools) | | ADBC / Arrow Flight | No | Yes | | Zero extra runtime | Yes (Node.js only) | No (Python 3.12+) |

License

Apache 2.0