Simple MCP Server

by laksiri-kingslake

91 downloads
Not rated
GitHub

Description

# Simple MCP Server ## Setup Environment 1. Create virtual environment and activate ```bash python3 -m venv venv # Ubuntu source ./venv/bin/activate # Windows .\venv\Scripts\activate ``` 2. Install dependencies ```bash pip install -r requirements.txt ``` ## Claude Desktop…

About

# Simple MCP Server ## Setup Environment 1. Create virtual environment and activate ```bash python3 -m venv venv # Ubuntu source ./venv/bin/activate # Windows .\venv\Scripts\activate ``` 2. Install dependencies ```bash pip install -r requirements.txt ``` ## Claude Desktop Configuration 1. Create the config file in…

Details

Author
laksiri-kingslake
Downloads
91
Categories
Other

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Simple MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Create and activate a Python virtual environment, install the required packages with pip install -r requirements.txt, then edit Claude Desktop’s claude_desktop_config.json to point to the server script and restart Claude.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "simple mcp server": {
            "mcp-simple-server": {
                "command": "python3",
                "args": [
                    "-m",
                    "venv",
                    "venv"
                ]
            }
        }
    }
}

McpServers

{
    "mcp-simple-server": {
        "command": "python3",
        "args": [
            "-m",
            "venv",
            "venv"
        ]
    }
}

Simple MCP Server

Setup Environment

1. Create virtual environment and activate

python3 -m venv venv

Ubuntu

source ./venv/bin/activate

Windows

.\venv\Scripts\activate

2. 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" 
            ]
        }
    }
}

2. Exit Claude and re-launch
- Notice the newly added tools

Reference

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

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

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

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.