分布式MCP Server

by xuhaoruins

1 stars
218 downloads
Not rated
GitHub

Description

# Distributed MCP Server A Model Context Protocol (MCP) server providing tool interfaces for legal information queries, weather data, Azure pricing, and utility functions. ## Overview This server offers API tools that can be used by Microsoft Copilot or other AI assistants…

About

# Distributed MCP Server A Model Context Protocol (MCP) server providing tool interfaces for legal information queries, weather data, Azure pricing, and utility functions. ## Overview This server offers API tools that can be used by Microsoft Copilot or other AI assistants supporting the MCP protocol: ### Legal…

Details

Author
xuhaoruins
GitHub stars
1
Downloads
218
Categories
Other

- Legal information tools for Chinese criminal law
- Weather alerts for US states
- Weather forecast by latitude/longitude
- Azure service price query with OData filters
- Chinese character counting function
- Deployable via Docker, Azure Container Apps, or Web App

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
    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 3.10+ virtual environment, install dependencies from requirements.txt, then start the server with python mcp-server.py --host 0.0.0.0 --port 8080. The server exposes an SSE endpoint at /sse and a message endpoint at /messages/. Docker deployment and Azure hosting are also supported.

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "\u5206\u5e03\u5f0fmcp server": {
            "mcp-server-xuhaoruins": {
                "command": "python",
                "args": [
                    "-m",
                    "venv",
                    "venv"
                ]
            }
        }
    }
}

McpServers

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

Distributed MCP Server

A Model Context Protocol (MCP) server providing tool interfaces for legal information queries, weather data, Azure pricing, and utility functions.

Overview

This server offers API tools that can be used by Microsoft Copilot or other AI assistants supporting the MCP protocol:

Legal Information Tools

- Get Article Information: Query Chinese criminal law articles by code - Content Search: Find relevant criminal law articles by keywords - Article Name Query: Look up legal information by article or offense name - Specific Paragraph Retrieval: Get specific paragraphs from articles - Get Full Content: Get the complete content of Chinese criminal law

Weather and Utility Tools

- Weather Alerts: Get US state weather alerts - Weather Forecast: Get weather forecasts using latitude and longitude - Azure Price Query: Query Azure service prices with OData filters - Chinese Character Count: Count Chinese characters in text

Technical Stack

- FastMCP framework for MCP protocol support
- Uvicorn ASGI server
- FastAPI/Starlette web framework
- SSE (Server-Sent Events) for communication

Requirements

- Python 3.10 or higher - Docker (optional, for containerized deployment)

Installation

Local Development:

1. Clone the repository:
   git clone <repository-url>
   cd mcp-server
   
2. Create and activate a virtual environment:
   python -m venv venv
   source venv/bin/activate  # Windows: venv\Scripts\activate
   
3. Install dependencies:
   pip install -r requirements.txt
   

Deploy Azure Function

For the Chinese character counting function: 1. Open the function directory in VSCode:
   cd function
   
2. Deploy using the Azure Functions extension

Usage

Starting the Server

python mcp-server.py --host 0.0.0.0 --port 8080
The server will run at http://localhost:8080.

Available Endpoints

- /sse - Server-Sent Events endpoint - /messages/ - MCP message processing endpoint

Tool Usage Examples

# Query criminal law
Please look up Article 133 of the Criminal Law.

Check weather

Are there any weather alerts in New York?

Count Chinese characters

How many Chinese characters are in: 人工智能正在改变我们的生活方式。

Docker Setup

Build Image

docker build -t mcp-server .

Run Container

docker run -p 8080:8080 --env-file .env mcp-server

Azure Deployment Options

1. Azure Container Registry (ACR)

az login
az group create --name myResourceGroup --location eastasia
az acr create --resource-group myResourceGroup --name myacrregistry --sku Basic
az acr login --name myacrregistry
docker tag mcp-server myacrregistry.azurecr.io/mcp-server:latest
docker push myacrregistry.azurecr.io/mcp-server:latest

2. Azure Container Apps

az containerapp env create \
  --name my-environment \
  --resource-group myResourceGroup \
  --location eastasia

az containerapp create \
--name mcp-server-app \
--resource-group myResourceGroup \
--environment my-environment \
--image myacrregistry.azurecr.io/mcp-server:latest \
--registry-server myacrregistry.azurecr.io \
--target-port 8080 \
--ingress external \
--env-vars MONGODB_CONNECTION_STRING=secretref:mongodbconnection \
AZURE_OPENAI_API_KEY=secretref:azureopenaikey

3. Azure Web App

az appservice plan create --name myAppServicePlan \
  --resource-group myResourceGroup \
  --sku B1 \
  --is-linux

az webapp create \
--resource-group myResourceGroup \
--plan myAppServicePlan \
--name my-mcp-server-app \
--deployment-container-image-name myacrregistry.azurecr.io/mcp-server:latest

az webapp config appsettings set \
--resource-group myResourceGroup \
--name my-mcp-server-app \
--settings MONGODB_CONNECTION_STRING=your_mongodb_connection_string \
AZURE_OPENAI_API_KEY=your_azure_openai_api_key

az webapp config container set \
--resource-group myResourceGroup \
--name my-mcp-server-app \
--docker-registry-server-url https://myacrregistry.azurecr.io \
--docker-custom-image-name myacrregistry.azurecr.io/mcp-server:latest

CI/CD

This project uses GitHub Actions to build Docker images and publish them to Azure Container Registry. See .github/workflows/action-to-acr.yml for details.

Recommended Architecture

For production: 1. Deploy to Azure Container Apps for auto-scaling 2. Deploy Azure Functions separately 3. Use Application Insights for monitoring 4. Use Azure Front Door for CDN and security

Adding New Tools

@mcp.tool()
async def my_new_tool(param1: str, param2: int = None) -> str:
    """Tool description.
  
    Args:
        param1: Description of parameter 1
        param2: Description of parameter 2
    """
    try:
        # Your code here
        return "Result"
    except Exception as e:
        return f"Error: {str(e)}"

Troubleshooting

Database Issues

- Verify MongoDB connection string format - For Cosmos DB, ensure vector search support

Azure OpenAI Issues

- Check API key and endpoint - Verify model deployment name

Viewing Logs

# Container Apps logs
az containerapp logs show --name mcp-server-app --resource-group myResourceGroup

Web App logs

az webapp log tail --name my-mcp-server-app --resource-group myResourceGroup

Function logs

az functionapp log tail --name haxufunctions --resource-group myResourceGroup

Security Best Practices

1. Store credentials in Azure Key Vault 2. Configure proper API authentication 3. Keep dependencies updated 4. Enable diagnostic logs 5. Use least privilege principle for service identities

References

- Model Context Protocol - FastMCP - Azure Container Apps - Azure Functions - Azure Cosmos DB
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.