🚀 MCP Dockmaster
MCP Dockmaster allows you to easily install and manage MCP servers. Available for Mac, Windows and Linux as a Desktop App, CLI and a library.
Overview
MCP Dockmaster is a monorepo project that allows users to easily manage MCP servers through a user-friendly interface, command line, or library. It is compatible with Mac, Windows, and Linux.
To use MCP Dockmaster, clone the repository from GitHub, install the necessary dependencies, and run the desired application using the provided commands.
- Multi-platform support (Mac, Windows, Linux) - User interface and command line options for managing MCP servers - Built with Tauri for efficient desktop application performance - Integrated development tools for building and testing projects in a monorepo structure
- Managing multiple MCP servers efficiently.
- Developing and testing applications in a monorepo environment.
- Utilizing the Tauri framework for creating lightweight desktop applications.
Add to your AI client
Use these steps to connect 🚀 MCP Dockmaster in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-dockmaster-dcspark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dockmaster-dcspark"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-dockmaster-dcspark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dockmaster-dcspark"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-dockmaster-dcspark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dockmaster-dcspark"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-dockmaster-dcspark": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dockmaster-dcspark"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-dockmaster-dcspark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dockmaster-dcspark"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-dockmaster-dcspark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dockmaster-dcspark"
]
}
}
}FAQ
What platforms does MCP Dockmaster support?
MCP Dockmaster supports Mac, Windows, and Linux.
How do I install MCP Dockmaster?
Clone the repository and run `npm ci` to install dependencies.
Can I run multiple tasks in parallel?
Yes! You can use the command `npx nx run-many --target=build --parallel=3` to run tasks in parallel.