About Dev Tools MCP Server
Dev Tools MCP Server is an MCP server published by mono-harold in the Developer Tools category: mCP server: Dev Tools MCP Server. It has been installed 0 times through Conduid.
Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx dev-tools-mcp-serverThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Dev Tools MCP Server
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
MCD MCP Server
An MCP (Model Context Protocol) server that connects Claude AI to the MCD PaaS API. It allows Claude to query database table definitions from the Monoplus Cloud (Sinfonia Cloud) platform through natural language.
What it does
This server acts as a bridge between Claude Desktop and the MCD PaaS REST API. When Claude needs information about database tables — their structure, metadata, creation dates, or categories — it calls this server, which handles authentication and API communication behind the scenes.
Currently available tools:
- get_db_table_definition — Search for database table definitions by category name and/or table name.
Prerequisites
- Python 3.12+
- uv package manager
- Access to an MCD PaaS API instance
- Claude Desktop (for MCP integration)
Setup
-
Install dependencies:
uv sync -
Copy
.env.sampleto.envand fill in your credentials:cp .env.sample .envRequired variables:
Variable Description MCD_PAAS_API_BASEBase URL of the MCD PaaS API LOGIN_COMPANY_CDCompany code for authentication LOGIN_USER_IDUser ID LOGIN_PASSWORDPassword LOGIN_BRANCH_NAMEBranch name (e.g., develop) -
Configure Claude Desktop by adding the server to
claude_desktop_config.json(seeconfig/claude_desktop_config.jsonfor a reference). If running from WSL, make sure to use the correct distribution name and set"WSL_UTF8": "1"in theenvblock.
Running
# Via the wrapper script (used by Claude Desktop)
./run-mcp.sh
# Or directly
uv run python main.py
The server communicates over stdio using the MCP protocol. Debug logs are written to /tmp/mcp-debug.log.
README mirrored from the source repository 4 months ago. The original is authoritative.