python-demo-mcp-server
If you are the rightful owner of python-demo-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
This is a demonstration server implementing the Model Context Protocol (MCP) with Server-Sent Events (SSE).
Python Demo MCP Server
Introduction
This is a demonstration server implementing the Model Context Protocol (MCP) with Server-Sent Events (SSE). It provides a practical example of how to build a server that can handle streaming content production and management.
Getting Started
- Set up your Python environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install the required packages
uv pip install -r requirements.txt
Run the server
Development Environment
python server.py
The server will start on http://localhost:8080 by default.
Production Environment
For deployment on Sevalla, make sure to select Dockerfile based build environment!
Usage in Cursor
To use this server in Cursor, paste the following in your mcp.json
file:
"demo-mcp": {
"url": "https://<your-mcp-server-domain>/sse"
}
Make sure to replace <your-mcp-server-domain>
with the actual domain of your server.