MCP.so
登录

Node.js JDBC MCP Server

@darkSheep404

关于 Node.js JDBC MCP Server

暂无概览

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

darkSheep404

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Node.js JDBC MCP Server?

Node.js JDBC MCP Server is a Model Context Protocol server built on Node.js that provides JDBC connectivity for MySQL, Oracle, and SQLite databases. It allows developers to execute SQL queries via HTTP endpoints within an MCP architecture.

How to use Node.js JDBC MCP Server?

Clone the repository, install dependencies with npm install, and configure the .env file with database credentials. Start the server with npm start or use npm run dev for hot‑reload development. The server exposes GET /health, POST /query, and POST /close endpoints for database operations.

Key features of Node.js JDBC MCP Server

  • Supports MySQL, Oracle, and SQLite databases
  • Provides health check endpoint (GET /health)
  • Executes SQL queries via POST /query
  • Closes database connections via POST /close
  • Offers development mode with hot reload
  • Uses environment variable configuration

Use cases of Node.js JDBC MCP Server

  • Execute SQL queries from an MCP‑compatible client
  • Manage multiple database types (MySQL, Oracle, SQLite) through a single server
  • Build MCP tools that require direct database access
  • Prototype or develop database‑backed MCP applications locally

FAQ from Node.js JDBC MCP Server

What databases does it support?

MySQL, Oracle, and SQLite. Oracle support requires installing the Oracle client.

What are the system requirements?

Node.js version 18.0.0 or higher, plus running instances of the target database server.

How do I configure database connections?

Copy .env.example to .env and fill in the connection details for each database type. Environment variables are used for configuration.

Does it require a specific transport or authentication?

The README does not mention authentication; the server listens on HTTP endpoints. Use environment variables to manage sensitive credentials in production.

How do I close a database connection?

Send a POST /close request with a JSON body containing the database type (e.g., {"type": "mysql"}).

评论

其他 分类下的更多 MCP 服务器