laksiri-kingslake/mcp-simple-server
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
- Create virtual environment and activate
python3 -m venv venv
# Ubuntu
source ./venv/bin/activate
# Windows
.\venv\Scripts\activate
- Install dependencies
pip install -r requirements.txt
Claude Desktop Configuration
- 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"
]
}
}
}
- Exit Claude and re-launch
- Notice the newly added tools
Reference
-
MCP (Model Context Protocol) Simplified
https://blog.stackademic.com/mcp-model-context-protocol-simplified-976b46f01efd -
Build a Simple Local MCP Server
https://blog.stackademic.com/build-simple-local-mcp-server-5434d19572a4 -
Adding Prompts to MCP Server
https://blog.stackademic.com/adding-prompts-to-mcp-server-64d058c4e758