SmallCloud MCP Server Demo
SmallCloud MCP Server Demonstration of an Anthropic MCP server using the Model Context Protocol SDK by Anthropic. For use with Claude Desktop and other MCP Hosts.
Overview
SmallCloud MCP Server is a demonstration of an Anthropic Model Context Protocol (MCP) server that utilizes the Model Context Protocol SDK by Anthropic, designed specifically for use with Claude Desktop and other MCP Hosts. # How to use SmallCloud MCP Server? To use the SmallCloud MCP Server, clone the repository from GitHub, install the necessary dependencies, and run the server using Node.js. Configure the MCP server in Claude Desktop by editing the appropriate configuration file. # Key features of SmallCloud MCP Server? - Demonstrates the use of the Model Context Protocol SDK by Anthropic. - Includes a simple tool to return a 'Hello, World!' message. - Easy installation and setup instructions for MacOS. # Use cases of SmallCloud MCP Server?
- Demonstrating MCP functionalities using Claude Desktop.
- Serving as a test environment for developers to experiment with the Model Context Protocol.
- Providing a foundational structure for creating reusable MCP solutions. # FAQ from SmallCloud MCP Server? - What prerequisites are needed to run this server? > You need Node.js (version 18 or later) and npm installed. - Can I run it on Windows? > Yes, but some adjustments may be required as this demo primarily targets MacOS. - How can I contribute to this project? > You can fork the repository, create a feature branch, make your changes, and then submit a pull request.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":325,"uuid":"ecce540c-e894-40c1-abae-3c81759ba991","name":"smallcloud-mcp-server","title":"SmallCloud MCP Server Demo","description":"SmallCloud MCP Server Demonstration of an Anthropic MCP server using the Model Context Protocol SDK by Anthropic. For use with Claude Desktop and other MCP Hosts.","avatar_url":"https://avatars.githubusercontent.com/u/133843892?v=4","created_at":"2024-12-13T13:19:12.928Z","updated_at":"2024-12-13T15:09:09.483Z","status":"created","author_name":"SmallCloudCo","author_avatar_url":"https://avatars.githubusercontent.com/u/133843892?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/SmallCloudCo/smallcloud-mcp-server","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":null,"user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]
Add to your AI client
Use these steps to connect SmallCloud MCP Server Demo 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": {
"smallcloud-mcp-server-smallcloudco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-smallcloud-mcp-server-smallcloudco"
]
}
}
}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": {
"smallcloud-mcp-server-smallcloudco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-smallcloud-mcp-server-smallcloudco"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"smallcloud-mcp-server-smallcloudco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-smallcloud-mcp-server-smallcloudco"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"smallcloud-mcp-server-smallcloudco": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-smallcloud-mcp-server-smallcloudco"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"smallcloud-mcp-server-smallcloudco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-smallcloud-mcp-server-smallcloudco"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"smallcloud-mcp-server-smallcloudco": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-smallcloud-mcp-server-smallcloudco"
]
}
}
}