PaulLNH/dd-mcp
3.1
If you are the rightful owner of dd-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
This project provides an MCP server for integration with Claude Desktop, enhancing AI workflows.
MCP Server for Claude Desktop
This project provides an MCP (Model Context Protocol) server that can be integrated with Claude Desktop for enhanced AI workflows.
Prerequisites
- Node.js installed on your system
- Claude Desktop installed
Installation
- Clone or download this repository.
- Install dependencies (if any):
npm install
Running the MCP Server
You can start the server manually with:
node server.js
Or, let Claude Desktop manage the server process automatically.
Integrating with Claude Desktop
- Open your Claude Desktop settings folder.
- Create or edit the
claude_desktop_config.json
file. - Add the following configuration:
{
"mcpServers": {
"clinical-calculator": {
"command": "node",
"args": ["C:/REPLACE/WITH/ABSOLUTE/PATH/TO/server.js"]
}
}
}
- Replace the path in
args
if your server.js is located elsewhere. - The key
clinical-calculator
is the name used to reference this server in Claude Desktop.
- Save the configuration and restart Claude Desktop if it is running.
Usage
- In Claude Desktop, select or reference the
clinical-calculator
MCP server as needed. - The server will be started automatically by Claude Desktop when required.
Troubleshooting
- Ensure the path to
server.js
is correct and accessible. - Check the terminal or Claude Desktop logs for error messages if the server does not start.
License
See LICENSE
file if present, or contact the author for licensing information.