MCP FastAPI Server

MCP FastAPI Server

Enables routing of AI model requests for code generation and debugging with API key authentication and rate limiting.

Category
Visit Server

README

MCP FastAPI Server

Overview

This project is a scalable FastAPI server for handling Model Control Protocol (MCP) requests. It is designed to route requests to different AI model services (such as code generation and debugging), enforce API key security, and provide rate limiting and logging. The server is modular, extensible, and ready for production or research use.

Features

  • FastAPI-based: High-performance, async Python web server
  • API Key Security: Protects endpoints with API key authentication
  • Rate Limiting: Per-key or per-client rate limiting (Redis or in-memory)
  • Code Generation & Debugging: Specialized endpoints for codegen and debugging models
  • Extensible Routers: Easily add new model types or endpoints
  • Comprehensive Logging: Info and error logs for all requests and errors
  • Health Checks: Endpoints for service and model health
  • Environment-based Configuration: Uses .env and config.py for settings

Project Structure

MCP_SERVER/
├── __init__.py
├── auth.py              # API key management and authentication
├── codegen_router.py    # Endpoints for code generation
├── config.py            # App and environment configuration
├── degubber_router.py   # Endpoints for code debugging
├── main.py              # FastAPI app setup and router inclusion
├── middleware.py        # Custom middleware (rate limiting, logging)
├── models.py            # Pydantic models for requests/responses
├── requirements.txt     # Python dependencies
├── services.py          # Model routing and core logic
├── start_server.py      # Production server startup script
├── test_client.py       # (Legacy) server startup script
├── api_test_script.py   # Script to test all main endpoints

Setup & Installation

  1. Clone the repository
  2. Install dependencies:
    pip install -r requirements.txt
    
  3. (Optional) Set environment variables in a .env file or your shell (see config.py for options)

Running the Server

  • Development:
    python start_server.py
    
  • The server will start on http://localhost:8000 by default.
  • API docs available at http://localhost:8000/docs

API Usage

Authentication

  • All main endpoints require an API key in the X-API-Key header.
  • Example keys are defined in auth.py (e.g., mcp-key-dev-123).

Main Endpoints

  • GET / — Root info
  • GET /health — Server health
  • POST /mcp — General MCP request (routes to appropriate model)
  • GET /api/v1/codegen/capabilities — Codegen model capabilities
  • POST /api/v1/codegen/generate — Generate code (requires write permission)
  • GET /api/v1/codegen/templates — Code templates
  • GET /api/v1/codegen/health — Codegen health
  • GET /api/v1/debugger/capabilities — Debugger model capabilities
  • POST /api/v1/debugger/analyze — Analyze code for bugs/errors
  • GET /api/v1/debugger/best-practices — Coding best practices
  • GET /api/v1/debugger/health — Debugger health

Example Request (with httpx)

import httpx
headers = {"X-API-Key": "mcp-key-dev-123"}
payload = {
    "model": "aiden-7b",
    "prompt": "Generate a Python function to add two numbers",
    "context": {"language": "python"}
}
resp = httpx.post("http://localhost:8000/api/v1/codegen/generate", headers=headers, json=payload)
print(resp.json())

Testing

  • Use api_test_script.py to test all main endpoints automatically:
    python api_test_script.py
    
  • The script prints status and response for each endpoint.

Extending the Project

  • Add new models: Implement new handlers in services.py and register them in ModelRouter.
  • Add new endpoints: Create new routers (see codegen_router.py, degubber_router.py).
  • Change rate limiting: Update or extend middleware.py.
  • Change API key logic: Update auth.py.

Contributing

  • Fork the repo and submit pull requests.
  • Please include tests and update documentation for new features.

License

MIT License (or specify your own)

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured