mcp-server-claude-desktop
Overview
The mcp-server-claude-desktop is a development tool designed to facilitate the integration and management of the Claude AI model on desktop environments.
To use this tool, clone the repository from GitHub, install the necessary dependencies, and follow the setup instructions provided in the README file.
- Easy integration with the Claude AI model. - User-friendly interface for managing AI interactions. - Support for various desktop environments.
- Developing AI-powered desktop applications.
- Creating chatbots that utilize the Claude AI model.
- Experimenting with AI functionalities in a local environment.
Add to your AI client
Use these steps to connect mcp-server-claude-desktop 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-server-claude-desktop-sunpeizhi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-claude-desktop-sunpeizhi"
]
}
}
}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-server-claude-desktop-sunpeizhi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-claude-desktop-sunpeizhi"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-claude-desktop-sunpeizhi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-claude-desktop-sunpeizhi"
]
}
}
}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-server-claude-desktop-sunpeizhi": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-claude-desktop-sunpeizhi"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-claude-desktop-sunpeizhi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-claude-desktop-sunpeizhi"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-claude-desktop-sunpeizhi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-claude-desktop-sunpeizhi"
]
}
}
}FAQ
Is mcp-server-claude-desktop free to use?
Yes! It is open-source and free for everyone to use.
What programming languages are supported?
The tool is primarily designed for use with JavaScript and Python.
Where can I find the documentation?
Documentation is available in the GitHub repository under the 'docs' folder.