Overview
mcpDemo is a demonstration project for the Model Context Protocol (MCP) server designed for Clever Cloud, showcasing how to implement and test the protocol using standard input/output as the transport method.
To use mcpDemo, you can run the MCP Debugging tool with the command npx @modelcontextprotocol/inspector node server.js or use npm run dev to start the server and test its functionalities.
- Simple demonstration of the Model Context Protocol (MCP) server. - Easy setup and testing using standard input/output. - Integration with Clever Cloud for cloud-based applications.
- Testing the implementation of the Model Context Protocol in cloud applications.
- Learning how to set up an MCP server for development purposes.
- Debugging and inspecting the behavior of the MCP server.
Add to your AI client
Use these steps to connect mcpDemo 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": {
"mcpdemo-davlgd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpdemo-davlgd"
]
}
}
}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": {
"mcpdemo-davlgd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpdemo-davlgd"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcpdemo-davlgd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpdemo-davlgd"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcpdemo-davlgd": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpdemo-davlgd"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcpdemo-davlgd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpdemo-davlgd"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcpdemo-davlgd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpdemo-davlgd"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
The Model Context Protocol (MCP) is a protocol designed for managing and interacting with model contexts in cloud applications.
Is mcpDemo suitable for production use?
No, mcpDemo is a demonstration project intended for testing and educational purposes only.
Where can I find the source code for mcpDemo?
The source code for mcpDemo is available on GitHub at [this link](https://github.com/davlgd/mcpDemo).