Advanced MCP HTTP Server

Advanced MCP HTTP Server

An HTTP-based MCP server that provides filesystem tools and code analysis, enabling LLMs to read, write, list files, and analyze code securely.

Category
访问服务器

README

MCP HTTP Advanced Host-Client-Server Application

CI/CD Python 3.9+ License: MIT Coverage: 90%+

A production-ready implementation of the Model Context Protocol (MCP) over HTTP with LLM tool integration, featuring OpenAI GPT models, comprehensive security, resilience patterns, and enterprise testing.

🎯 Key Features

Core Capabilities

  • HTTP-based MCP - Distributed tool protocol over HTTP
  • LLM Integration - OpenAI GPT model with function calling
  • Filesystem Tools - Read/write files with security
  • Web UI - Gradio interface for exploration and testing
  • AI Agent - Autonomous tool execution based on user intent

Production Ready

  • Configuration Management - JSON config with env var substitution
  • Security - Path traversal prevention, input validation, UTF-8 enforcement
  • Resilience - Connection retry, heartbeat verification, error recovery
  • Logging - Structured logging with configurable levels
  • Testing - 75+ tests with 90%+ coverage, CI/CD pipeline
  • Documentation - Comprehensive guides for configuration and testing

📦 What's Included

🎯 mcp_http_server.py          HTTP MCP Server (FastMCP)
🎨 mcp_http_client_app.py      Web UI (Gradio) for exploration
🤖 mcp_http_host_app.py        AI Agent with OpenAI integration
📋 mcp_config.py               Configuration management with priority resolution
⚙️  mcp_config.json            Production configuration
🧪 tests/                      75+ test cases with pytest
🔄 .github/workflows/ci_cd.yml  GitHub Actions CI/CD pipeline
📚 Documentation               Guides for quick start, config, testing, and review

🚀 Quick Start (5 minutes)

Prerequisites

python 3.9+          # For async/await and type hints
pip package manager  # For dependency installation
OpenAI API key       # For GPT model access

Installation

  1. Clone and setup

    git clone <repo>
    cd advanced-mcp-host-client-server-app
    pip install -r requirements.txt
    
  2. Set API key

    export OPENAI_API_KEY=sk-your-key-here
    
  3. Start server

    python mcp_http_server.py
    # Server running on http://127.0.0.1:8000
    
  4. Start AI Host (new terminal)

    python mcp_http_host_app.py http://127.0.0.1:8000 ./workspace
    # Access at http://127.0.0.1:7862
    
  5. Chat with AI

    • Go to http://127.0.0.1:7862
    • Type: "List the files in workspace"
    • AI calls list_files tool automatically!

See QUICKSTART.md for detailed setup instructions.

📖 Documentation

Document Purpose
QUICKSTART.md 5-minute setup and common tasks
CONFIG.md Configuration reference with examples
TESTING.md Testing guide with 75+ test cases
PROJECT_REVIEW.md Complete technical review and architecture

🏗️ Architecture

Component Diagram

┌──────────────────────────────────────────────────────┐
│              MCP Application Suite                    │
└──────────────────────────────────────────────────────┘

    GUI Client                AI Host App            API Clients
   (Gradio UI)         (GPT + Tool Calling)       (Custom clients)
        │                     │                        │
        └─────────────────────┼────────────────────────┘
                              │
                         HTTP/Streamable
                              │
                    ┌─────────▼──────────┐
                    │  HTTP MCP Server   │
                    │   (FastMCP)        │
                    │                    │
                    │ • File Tools       │
                    │ • Resources        │
                    │ • Prompts          │
                    │ • Analysis         │
                    └────────────────────┘
                              │
                         Workspace
                    (./workspace files)

Component Responsibilities

  • mcp_http_server.py: Exposes filesystem and analysis tools via HTTP MCP
  • mcp_http_client_app.py: Web UI for exploring tools, resources, and prompts
  • mcp_http_host_app.py: LLM agent that calls tools autonomously
  • mcp_config.py: Centralized configuration with priority resolution
  • tests/: Comprehensive test suite for reliability

🔒 Security Features

Feature Purpose Example
Roots Validation Prevent directory traversal Blocks ../../etc/passwd
Path Checking Block absolute paths Rejects /etc/passwd
Input Validation Sanitize parameters Checks for special chars
UTF-8 Encoding Prevent encoding attacks Enforces UTF-8 on files
Error Safety No path disclosure Returns safe error messages

⚙️ Configuration

Three Tiers (Priority)

1. Command-line arguments  (Highest priority)
   └─ python app.py --model gpt-4o

2. Configuration file
   └─ mcp_config.json with "model": "gpt-4o-mini"

3. Environment variables
   └─ export OPENAI_MODEL=gpt-4o-mini

4. Hardcoded defaults      (Lowest priority)
   └─ DEFAULT_MODEL = "gpt-4o-mini"

Example mcp_config.json

{
  "openai": {
    "api_key": "${OPENAI_API_KEY}",
    "model": "gpt-4o-mini"
  },
  "server": {
    "host": "127.0.0.1",
    "port": 8000
  },
  "gui": {
    "host": "127.0.0.1",
    "port": 7862
  },
  "logging": {
    "level": "INFO"
  }
}

See CONFIG.md for complete configuration guide.

🧪 Testing

Run All Tests

pip install -r requirements-test.txt
pytest tests/ -v

Test Coverage

  • Overall: 90%+
  • Config module: 95%+
  • Server module: 90%+
  • Client module: 85%+

Test Types

  • Unit Tests (60%): Fast, isolated component tests
  • Security Tests (20%): Vulnerability and attack prevention
  • Integration Tests (20%): Real-world scenarios

See TESTING.md for comprehensive testing guide.

🔄 Resilience Features

Feature Impact Details
Connection Retry Automatic recovery 3 attempts, 1s delay
Heartbeat Detects dead connections 2s verification timeout
History Bounded Prevents token overflow Max 20 messages
Error Recovery Graceful degradation Logs errors, continues

📊 Performance

Metric Value
Server Throughput ~100+ requests/second
Tool Call Latency <50ms (local network)
Connection Time <1 second (with retry)
Memory Baseline ~100MB
Max History 20 messages (bounded)

🚀 Deployment

Local Development

# Terminal 1: Server
python mcp_http_server.py

# Terminal 2: GUI Client
python mcp_http_client_app.py http://localhost:8000 ./workspace

# Terminal 3: AI Host
python mcp_http_host_app.py http://localhost:8000 ./workspace

Docker

docker build -t mcp-app .
docker run -e OPENAI_API_KEY=$OPENAI_API_KEY -p 8000:8000 -p 7862:7862 mcp-app

GitHub Actions CI/CD

  • ✅ Automated testing on Python 3.9-3.11
  • ✅ Runs on Linux, macOS, Windows
  • ✅ Code quality checks (pylint, black, flake8, mypy)
  • ✅ Security checks (bandit, safety)
  • ✅ Coverage reporting

See PROJECT_REVIEW.md for deployment details.

🛠️ Tools & Technologies

Core

  • FastMCP 2.12.5: MCP server framework
  • OpenAI SDK 2.6.1: GPT model integration
  • Gradio 5.49.1: Web UI framework
  • Uvicorn 0.38.0: ASGI server
  • HTTPx: HTTP client

Testing

  • Pytest 7.4.3: Test framework
  • Pytest-asyncio: Async test support
  • Pytest-cov: Coverage reporting
  • Black, Pylint, Flake8, MyPy: Code quality

📝 API Reference

Server Tools

read_file(filepath: str) -> str
  # Read file from workspace

write_file(filepath: str, content: str) -> str
  # Write file to workspace

list_files(directory: str) -> List[str]
  # List directory contents

analyze_code(code: str, focus: str = "") -> str
  # Analyze code with LLM

Client Methods

await client.connect()
await client.list_tools()
await client.call_tool(name, arguments)
await client.list_resources()
await client.read_resource(uri)
await client.list_prompts()
await client.get_prompt(name, arguments)

🔐 Security Considerations

✅ Implemented

  • Path traversal prevention
  • Input validation on all parameters
  • UTF-8 encoding enforcement
  • Error message safety
  • Dependency security checks (CI/CD)

⚠️ To Implement

  • API authentication
  • Authorization/RBAC
  • Rate limiting
  • Request signing
  • Data encryption at rest

See PROJECT_REVIEW.md for security details.

🤝 Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit changes (git commit -m 'Add amazing feature')
  4. Push to branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

All PRs must:

  • ✅ Pass all tests
  • ✅ Maintain 90%+ coverage
  • ✅ Pass code quality checks
  • ✅ Include documentation

📋 Project Status

✅ Completed

  • HTTP MCP server with filesystem tools
  • Gradio web UI for tool exploration
  • OpenAI integration with function calling
  • Configuration management system
  • 75+ test cases with CI/CD pipeline
  • Comprehensive documentation
  • Security hardening
  • Resilience patterns

🚧 In Progress

  • Enhanced monitoring and metrics
  • Performance optimization
  • Extended logging

📋 Planned

  • Multi-instance load balancing
  • Persistent conversation storage
  • Database-backed file storage
  • Authentication/authorization
  • WebSocket support
  • Batch operations
  • Custom tool templates

📄 License

This project is licensed under the MIT License - see LICENSE file for details.

👥 Author

Deepak Upadhyay - Engineering

🙏 Acknowledgments

  • FastMCP team for MCP server framework
  • OpenAI for GPT model APIs
  • Gradio for web UI components
  • Python async/await ecosystem

📞 Support

For issues, questions, or feature requests:

  1. Check Documentation

  2. Review Examples

  3. Debug Issues

    • Enable debug logging: LOG_LEVEL=DEBUG
    • Check PROJECT_REVIEW.md for architecture
    • Run tests: pytest -v to verify setup

🎓 Learning Resources


Version: 1.0.0
Last Updated: 2024
Status: Production Ready ✅

Made with ❤️ for the agentic engineering community.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选