MCP Server Implementation

by yisu201506

2 stars
228 downloads
Not rated
GitHub

About

A Flask-based implementation of the Model Context Protocol (MCP) that extends Large Language Models with external tools like weather and calculator, using text-based tool invocation directly in the context window.

Details

Author
yisu201506
GitHub stars
2
Downloads
228
Categories
Other, AI, API

- Complete MCP parsing, execution, and response handling
- Sample weather and calculator tools with parameter validation
- Maintains conversation context across multiple interactions
- Regex‑based parsing for flexible tool invocation detection
- Flask REST API for easy chat integration

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 MCP Server Implementation
    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

Clone the repository, create a Python virtual environment, install dependencies, set environment variables for API keys, then run flask run or gunicorn app:app. Send chat messages via the POST /chat endpoint with a JSON body containing a messages array.

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "mcp server implementation": {
            "mcp-server-yisu201506": {
                "command": "python",
                "args": [
                    "-m",
                    "venv",
                    "venv"
                ]
            }
        }
    }
}

McpServers

{
    "mcp-server-yisu201506": {
        "command": "python",
        "args": [
            "-m",
            "venv",
            "venv"
        ]
    }
}

MCP Server Implementation

A complete Flask-based implementation of Model Context Protocol (MCP) for enhancing Large Language Model capabilities with external tools.

Overview

This repository demonstrates how to build a server that handles Model Context Protocol (MCP), a method for extending LLM capabilities through tool invocation directly in the model's text output. Unlike function calling, MCP places tool definitions directly in the context window and parses the model's natural language responses to identify tool usage.

Features

- 🔧 Complete MCP Implementation: Full parsing, execution, and response handling
- 🌤️ Sample Tools: Weather and calculator tools with parameter validation
- 🔄 Conversation Flow: Maintains context across multiple interactions
- 🧩 Regex-Based Parsing: Flexible text parsing for tool invocations
- 🚀 Flask API: REST API endpoints for chat integration

Project Structure

mcp_server/
├── app.py                  # Main Flask application
├── mcp_handler.py          # MCP parsing and execution
├── mcp_example.py          # Standalone MCP example
├── requirements.txt        # Dependencies
├── tools/                  # Tool implementations
│   ├── __init__.py
│   ├── weather.py          # Weather API tool
│   └── calculator.py       # Calculator tool
└── README.md               # This file

Installation

1. Clone the repository:

   git clone https://github.com/yourusername/mcp-server.git
cd mcp-server

2. Create a virtual environment:

   python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate

3. Install dependencies:

   pip install -r requirements.txt

4. Set up environment variables:

   # Create a .env file with:
LLM_API_KEY=your_llm_api_key_here
WEATHER_API_KEY=your_weather_api_key_here
FLASK_APP=app.py
FLASK_ENV=development

Usage

Running the Server

Start the Flask development server:

flask run

For production:

gunicorn app:app

API Endpoints

- POST /chat: Process chat messages with MCP

  curl -X POST http://localhost:5000/chat \
-H "Content-Type: application/json" \
-d '{
"messages": [
{
"role": "user",
"content": "What's the weather like in Boston?"
}
]
}'

Standalone Example

Run the example script to see MCP in action:

python mcp_example.py

How It Works

1. Tool Registration: Tools are registered with their parameters and execution logic
2. Tool Definition Injection: XML-formatted tool descriptions are added to the prompt
3. LLM Response Processing: Regex patterns identify tool calls in the LLM's text output
4. Tool Execution: Parameters are parsed and passed to appropriate tool handlers
5. Result Injection: Tool execution results are inserted back into the response

MCP vs. Function Calling

| Feature | MCP | Function Calling |
|---------|-----|-----------------|
| Definition Location | In prompt text | In API parameters |
| Invocation Format | Natural language | Structured JSON |
| Implementation | Text parsing | API integration |
| Visibility | Visible in response | May be hidden |
| Platform Support | Any text-based LLM | Requires API support |

Example Conversation

User: What's the weather like in Boston?

LLM:

I'll check the weather for you.

get_weather(location="Boston, MA", unit="fahrenheit")

After Processing:

I'll check the weather for you.

get_weather(location="Boston, MA", unit="fahrenheit")

Result from get_weather:
{
"location": "Boston, MA",
"temperature": 72,
"unit": "fahrenheit",
"conditions": "Partly Cloudy",
"humidity": 68,
"wind_speed": 5.8
}

Adding Your Own Tools

1. Create a new class inheriting from Tool
2. Define parameters and execution logic
3. Register with the MCP handler

Example:

class MyTool(Tool):
def __init__(self):
parameters = [
{
"name": "param1",
"type": "string",
"description": "Description of param1",
"required": True
}
]

super().__init__(
name="my_tool",
description="Description of my tool",
parameters=parameters
)

def execute(self, param1):
# Tool logic here
return {"result": "Processed " + param1}

MCP Configuration and Invocation Flow

1. Tool Registration:
- MCP tools are registered with the handler
- Each tool provides its name, description, and parameter definitions

2. Tool Definition Injection:
- Tool definitions are added to the system message
- Format follows XML structure for MCP

3. LLM Response Processing:
- LLM generates responses that may include tool invocations
- Pattern matching identifies tool calls in the text
- Tool parameters are parsed and passed to tool execution methods

4. Tool Execution:
- Tools are executed with the provided parameters
- Results are injected back into the conversation

5. Conversation Management:
- Processed responses with tool results are added to conversation history
- Future LLM requests include this history for context

Example Conversation

Here's an example of what a conversation might look like:

User: What's the weather like in Boston?

System: Sends prompt with MCP tool definitions to LLM

LLM Response:

I'll check the weather for you.

get_weather(location="Boston, MA", unit="fahrenheit")

MCP Handler: Parses the response, finds the tool call, and executes the weather tool

Tool Execution Result:

Result from get_weather:
{
"location": "Boston, MA",
"temperature": 72,
"unit": "fahrenheit",
"conditions": "Partly Cloudy",
"humidity": 68,
"wind_speed": 5.8
}

Processed Response (sent back to user):

I'll check the weather for you.

get_weather(location="Boston, MA", unit="fahrenheit")

Result from get_weather:
{
"location": "Boston, MA",
"temperature": 72,
"unit": "fahrenheit",
"conditions": "Partly Cloudy",
"humidity": 68,
"wind_speed": 5.8
}

User: Can you calculate the square root of 144?

LLM Response:

I can calculate that for you.

calculator(expression="sqrt(144)")

MCP Handler: Parses response, executes calculator tool

Tool Execution Result:

Result from calculator:
{
"expression": "sqrt(144)",
"result": 12.0
}

Processed Response (sent back to user):

I can calculate that for you.

calculator(expression="sqrt(144)")

Result from calculator:
{
"expression": "sqrt(144)",
"result": 12.0
}

The square root of 144 is 12.

This demonstrates the complete flow of MCP tool usage, from the LLM's text-based invocation through execution and response processing.

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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.