Interactive installer for DTCMVP MCP Server - automatically configures Claude Desktop
npm install @dtcmvp/mcp-server-installInteractive installer for the DTCMVP MCP Server. Automatically configures Claude Desktop with your API key.
``bash`
npx @dtcmvp/mcp-server-install
The installer will:
1. Prompt you for your DTCMVP API key
2. Automatically find your Claude Desktop config file
3. Add the DTCMVP MCP server configuration
4. Set up everything needed
1. An API key from dtcmvpete.com (Settings > API Keys)
2. Claude Desktop installed
1. Quit Claude Desktop completely (not just close the window)
2. Reopen Claude Desktop
3. The DTCMVP tools will be available!
This installer configures Claude Desktop to use @dtcmvp/mcp-server via npx. No permanent installation is required - Claude Desktop will automatically download the latest version when it starts.
If you prefer to configure manually, add this to your Claude Desktop config:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json
Windows:
`json``
{
"mcpServers": {
"dtcmvp": {
"command": "npx",
"args": ["-y", "@dtcmvp/mcp-server"],
"env": {
"DTCMVP_API_KEY": "dtc_your_api_key_here"
}
}
}
}
MIT