A working example to create a starlette server with SSE-based MCP support
Project description
Starlette MCP SSE
English | 简体中文
A Server-Sent Events (SSE) implementation using Starlette framework with Model Context Protocol (MCP) integration.
What is MCP?
The Model Context Protocol (MCP) is an open standard that enables AI models to interact with external tools and data sources. MCP solves several key challenges in AI development:
- Context limitations: Allows models to access up-to-date information beyond their training data
- Tool integration: Provides a standardized way for models to use external tools and APIs
- Interoperability: Creates a common interface between different AI models and tools
- Extensibility: Makes it easy to add new capabilities to AI systems without retraining
This project demonstrates how to implement MCP using Server-Sent Events (SSE) in a Starlette web application.
Description
This project demonstrates how to implement Server-Sent Events (SSE) using the Starlette framework while integrating Model Context Protocol (MCP) functionality. The key feature is the seamless integration of MCP's SSE capabilities within a full-featured Starlette web application that includes custom routes.
Features
- Server-Sent Events (SSE) implementation with MCP
- Starlette framework integration with custom routes
- Unified web application with both MCP and standard web endpoints
- Customizable route structure
- Clean separation of concerns between MCP and web functionality
Architecture
This project showcases a modular architecture that:
- Integrates MCP SSE endpoints (
/sseand/messages/) into a Starlette application - Provides standard web routes (
/,/about,/status,/docs) - Demonstrates how to maintain separation between MCP functionality and web routes
Installation & Usage Options
Prerequisites
Install UV Package Manager - A fast Python package installer written in Rust:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Option 1: Quick Run Without Installation
Run the application directly without cloning the repository using UV's execution tool:
uvx --from git+https://github.com/panz2018/starlette_mcp_sse.git start
Option 2: Full Installation
Create Virtual Environment
Create an isolated Python environment for the project:
uv venv
Activate Virtual Environment
Activate the virtual environment to use it:
.venv\Scripts\activate
Install Dependencies
Install all required packages:
uv pip install -r pyproject.toml
Start the Integrated Server
Launch the integrated Starlette server with MCP SSE functionality:
python src/server.py
or
uv run start
Available Endpoints
After starting the server (using either Option 1 or Option 2), the following endpoints will be available:
- Main server: http://localhost:8000
- Standard web routes:
- Home page: http://localhost:8000/
- About page: http://localhost:8000/about
- Status API: http://localhost:8000/status
- Documentation: http://localhost:8000/docs
- MCP SSE endpoints:
- SSE endpoint: http://localhost:8000/sse
- Message posting: http://localhost:8000/messages/
Debug with MCP Inspector
For testing and debugging MCP functionality, use the MCP Inspector:
mcp dev ./src/weather.py
Connect to MCP Inspector
- Open MCP Inspector at http://localhost:5173
- Configure the connection:
- Set Transport Type to
SSE - Enter URL: http://localhost:8000/sse
- Click
Connect
- Set Transport Type to
Test the Functions
- Navigate to
Toolssection - Click
List Toolsto see available functions:get_alerts: Get weather alertsget_forcast: Get weather forecast
- Select a function
- Enter required parameters
- Click
Run Toolto execute
Extending the Application
Adding Custom Routes
The application structure makes it easy to add new routes:
- Define new route handlers in routes.py
- Add routes to the routes list in routes.py
- The main application will automatically include these routes
Customizing MCP Integration
The MCP SSE functionality is integrated in server.py through:
- Creating an SSE transport
- Setting up an SSE handler
- Adding MCP routes to the Starlette application
Integration with Continue
To use this MCP server with the Continue VS Code extension, add the following configuration to your Continue settings:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"name": "weather",
"type": "sse",
"url": "http://localhost:8000/sse"
}
}
]
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file iflow_mcp_panz2018_starlette_mcp_sse-0.1.0.tar.gz.
File metadata
- Download URL: iflow_mcp_panz2018_starlette_mcp_sse-0.1.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01c833e413d9f4579551a929b068e54e422ddf60e7013928913f05ec4998b567
|
|
| MD5 |
64972db9a3f97c68539d7a73e57bd12a
|
|
| BLAKE2b-256 |
82043496ddcb1bd7a5d6b388dc8699ee7819532fbd76d5225fbefc93760bec40
|
File details
Details for the file iflow_mcp_panz2018_starlette_mcp_sse-0.1.0-py3-none-any.whl.
File metadata
- Download URL: iflow_mcp_panz2018_starlette_mcp_sse-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0a3a64ee080be4f281ed07fd0659fd623131018a6ca1dae4d15c4d2271cb4b9
|
|
| MD5 |
52e4fbbe847a9ba9d4efc850019c0889
|
|
| BLAKE2b-256 |
fc9e970aacbedf7a70af2291fb0d6f9b4928e53fcbb32a3d55b28c0ff10fa37a
|