分布式MCP Server

分布式MCP Server

xuhaoruins

研究与数据
访问服务器

README

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

推荐服务器

Crypto Price & Market Analysis MCP Server

Crypto Price & Market Analysis MCP Server

一个模型上下文协议 (MCP) 服务器,它使用 CoinCap API 提供全面的加密货币分析。该服务器通过一个易于使用的界面提供实时价格数据、市场分析和历史趋势。 (Alternative, slightly more formal and technical translation): 一个模型上下文协议 (MCP) 服务器,利用 CoinCap API 提供全面的加密货币分析服务。该服务器通过用户友好的界面,提供实时价格数据、市场分析以及历史趋势数据。

精选
TypeScript
MCP PubMed Search

MCP PubMed Search

用于搜索 PubMed 的服务器(PubMed 是一个免费的在线数据库,用户可以在其中搜索生物医学和生命科学文献)。 我是在 MCP 发布当天创建的,但当时正在度假。 我看到有人在您的数据库中发布了类似的服务器,但还是决定发布我的。

精选
Python
mixpanel

mixpanel

连接到您的 Mixpanel 数据。从 Mixpanel 分析查询事件、留存和漏斗数据。

精选
TypeScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

这个服务器通过将复杂问题分解为顺序步骤来促进结构化的问题解决,支持修订,并通过完整的 MCP 集成来实现多条解决方案路径。

精选
Python
Nefino MCP Server

Nefino MCP Server

为大型语言模型提供访问德国可再生能源项目新闻和信息的能力,允许按地点、主题(太阳能、风能、氢能)和日期范围进行筛选。

官方
Python
Vectorize

Vectorize

将 MCP 服务器向量化以实现高级检索、私有深度研究、Anything-to-Markdown 文件提取和文本分块。

官方
JavaScript
Mathematica Documentation MCP server

Mathematica Documentation MCP server

一个服务器,通过 FastMCP 提供对 Mathematica 文档的访问,使用户能够从 Wolfram Mathematica 检索函数文档和列出软件包符号。

本地
Python
kb-mcp-server

kb-mcp-server

一个 MCP 服务器,旨在实现便携性、本地化、简易性和便利性,以支持对 txtai “all in one” 嵌入数据库进行基于语义/图的检索。任何 tar.gz 格式的 txtai 嵌入数据库都可以被加载。

本地
Python
Research MCP Server

Research MCP Server

这个服务器用作 MCP 服务器,与 Notion 交互以检索和创建调查数据,并与 Claude Desktop Client 集成以进行和审查调查。

本地
Python
Cryo MCP Server

Cryo MCP Server

一个API服务器,实现了模型补全协议(MCP),用于Cryo区块链数据提取。它允许用户通过任何兼容MCP的客户端查询以太坊区块链数据。

本地
Python