MCP Sample
Test repository created using Claude Desktop and MCP server integration
Overview
MCP Sample is a test repository created to demonstrate the integration of Claude Desktop with the MCP server.
To use MCP Sample, clone the repository from GitHub and explore the integration features provided in the code.
- Demonstrates server integration capabilities - Provides sample code for testing - Easy to clone and modify for personal use
- Testing server integration with Claude Desktop.
- Learning how to set up a basic repository for server interactions.
- Experimenting with code modifications for personal projects.
Add to your AI client
Use these steps to connect MCP Sample 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-sample-pxdsgnco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sample-pxdsgnco"
]
}
}
}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-sample-pxdsgnco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sample-pxdsgnco"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-sample-pxdsgnco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sample-pxdsgnco"
]
}
}
}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-sample-pxdsgnco": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sample-pxdsgnco"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-sample-pxdsgnco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sample-pxdsgnco"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-sample-pxdsgnco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sample-pxdsgnco"
]
}
}
}FAQ
What is the purpose of this repository?
The purpose is to showcase how Claude Desktop can be integrated with the MCP server.
Is this repository suitable for production use?
No, this is a test repository and not intended for production environments.
How can I contribute to this project?
You can fork the repository, make changes, and submit a pull request.