DM8
- typescript
1
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mzaxd-dm8-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-dm8-server",
"--host",
"127.0.0.1",
"--port",
"5236",
"--username",
"SYSDBA",
"--password",
"密码",
"--schema",
"SYSDBA"
],
"env": {
"DM_HOST": "127.0.0.1",
"DM_PORT": "5236",
"DM_SCHEMA": "SYSDBA",
"DM_PASSWORD": "密码",
"DM_USERNAME": "SYSDBA",
"DM_DB_PROXY_ENABLED": "false"
}
}
}
}You can query and explore DM8 model context data with a lightweight MCP server that exposes table structures and read-only access. It supports proxy connections and is designed to be easy to run from your existing toolchain, so you can securely browse schemas and run safe read queries against your DM8 database.
How to use
Run the MCP server from a local or remote environment and connect your MCP client to it. You will provide connection details such as host, port, and credentials, and you may enable a proxy if your network requires one. Use the client’s MCP configuration to point at the server and begin listing tables, describing tables, and executing safe read-only queries.
How to install
Prerequisites: you need Node.js installed on your system. A working npm or npx is required to run the MCP server bundles.
# Directly run without installation
npx mcp-dm8-server --host 127.0.0.1 --port 5236 --username SYSDBA --password 密码 --schema SYSDBA
# Or install globally and then run
npm install -g mcp-dm8-server
mcp-dm8 --host 127.0.0.1 --port 5236 --username SYSDBA --password 密码 --schema SYSDBA
# If you need to connect via a proxy, include proxy options
npx mcp-dm8-server \
--host your_dm_host \
--username SYSDBA \
--password 密码 \
--schema SYSDBA \
--proxy-enabled \
--proxy-host proxy.company.com \
--proxy-port 8080 \
--proxy-type http
Additional sections
Configuration and usage details are provided below to help you set up for read-only DM8 access, including environment variable usage, proxy configuration, and common considerations when integrating with clients such as Claude Desktop or mcp-router.
Available tools
list_tables
List all tables in the specified schema or the default schema if provided.
describe_table
Show the structure and columns of a specific table.
execute_query
Run a read-only SQL query against the configured schema with safety restrictions.