mcp-simple-server

laksiri-kingslake/mcp-simple-server

3.1

If you are the rightful owner of mcp-simple-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Simple MCP Server is a basic implementation of a Model Context Protocol server designed to facilitate communication between different components in a software environment.

Simple MCP Server

Setup Environment

  1. Create virtual environment and activate
python3 -m venv venv

# Ubuntu
source ./venv/bin/activate

# Windows
.\venv\Scripts\activate
  1. Install dependencies
pip install -r requirements.txt

Claude Desktop Configuration

  1. Create the config file in claude installation folder (C:\Users\admin\AppData\Roaming\Claude\claude_desktop_config.json)
{
    "mcpServers": {
        "weather": {
            "command": "C:\\my\\lessions\\mcp\\simple-server\\venv\\Scripts\\python.exe",
            "args": [
                "C:\\my\\lessions\\mcp\\simple-server\\server.py" 
            ]
        }
    }
}
  1. Exit Claude and re-launch
  • Notice the newly added tools

Reference

  1. MCP (Model Context Protocol) Simplified
    https://blog.stackademic.com/mcp-model-context-protocol-simplified-976b46f01efd

  2. Build a Simple Local MCP Server
    https://blog.stackademic.com/build-simple-local-mcp-server-5434d19572a4

  3. Adding Prompts to MCP Server
    https://blog.stackademic.com/adding-prompts-to-mcp-server-64d058c4e758