dd-mcp

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

Installation

  1. Clone or download this repository.
  2. 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

  1. Open your Claude Desktop settings folder.
  2. Create or edit the claude_desktop_config.json file.
  3. 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.
  1. 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.