In the rapidly evolving landscape of AI-assisted development, the Model Context Protocol (MCP) has emerged as a game-changer. But what if you want to connect your AI assistants to existing FastAPI applications without modifying their code? Today, I’ll show you how to create an automatic MCP server from any FastAPI URL using just one prompt in Cursor.
The Power of FastAPI’s OpenAPI Documentation
FastAPI automatically generates comprehensive OpenAPI (formerly Swagger) documentation for all endpoints. This documentation contains everything needed to understand and interact with the API:
- Endpoint paths and HTTP methods
- Request parameters and body schemas
- Response formats and status codes
- Detailed descriptions and examples
This rich metadata is exactly what we need to create an MCP server that can proxy requests to the original API.
The One-Prompt Solution
Copy and paste this prompt into Cursor to generate a complete, ready-to-run MCP server that connects to any FastAPI application:
Create a complete Python script that generates an MCP server from the FastAPI application running at {URL}. The script should:
1. Fetch the OpenAPI/Swagger documentation from {URL}/openapi.json
2. Analyze all endpoints, parameters, request bodies, and response models
3. Create a new FastAPI application that:
- Mirrors all the endpoints from the original API
- Forwards requests to the original API
- Returns responses from the original API
4. Add MCP server functionality using the fastapi_mcp library
5. Include proper error handling for:
- Connection issues
- Authentication failures
- Invalid responses
The final script should be a single, self-contained Python file that:
- Takes command line arguments for customization (port, authentication, etc.)
- Includes detailed comments explaining how it works
- Can be run directly with "python script.py" to start the MCP server
- Automatically connects to {URL} and creates an MCP server at http://localhost:8000/mcp
Replace {URL} with the actual URL of the FastAPI application, for example https://api.example.com.
The output should be ONLY the complete Python script, ready to run, with no explanations before or after the code.
How to Use This Prompt
- Replace {URL} with the actual URL of the FastAPI application you want to connect to
- For example:
https://api.example.com
orhttp://localhost:8000
- Paste the prompt into Cursor or another AI coding assistant
- Copy the generated Python script and save it as
mcp_bridge.py
- Run the script with Python:
python mcp_bridge.py
- Connect your AI assistant to the MCP server at
http://localhost:8000/mcp
That’s it! No manual coding, no configuration files, no complex setup. Just one prompt and you have a fully functional MCP server that connects to any FastAPI application.
What Makes This Approach Special
This solution is unique because:
- It requires zero knowledge of MCP or FastAPI – the AI does all the work
- It works with any FastAPI application that has OpenAPI documentation enabled
- It preserves all the original API’s functionality including parameters, schemas, and documentation
- It creates a production-ready MCP server with proper error handling and logging
- It’s completely automated – no manual intervention required
Real-World Applications
This approach opens up exciting possibilities:
- Connect AI assistants to your company’s internal APIs without modifying them
- Create MCP bridges to public APIs that use FastAPI
- Test MCP functionality before implementing it directly in your codebase
- Provide AI access to legacy systems through a FastAPI proxy
Conclusion
The ability to create MCP servers from existing FastAPI URLs with just one prompt is a game-changer for AI-assisted development. You can now connect your favorite AI assistants to any FastAPI application in minutes, without writing a single line of code yourself.
Try this approach today and experience the power of combining FastAPI’s excellent documentation with the flexibility of the Model Context Protocol!
Loic Baconnier