Python Demo MCP Server
Description
# 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…
About
# 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 1. Set up your Python environment…
Details
- Author
- Johnnybar
- Downloads
- 112
- Categories
- Other
Jump to
- Implements MCP with Server-Sent Events (SSE)
- Streaming content production and management
- Runs locally via python server.py
- Docker‑based deployment for Sevalla
- Cursor integration via SSE URL
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Python Demo MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Set up a Python environment, install dependencies with uv pip install -r requirements.txt, then run python server.py (defaults to http://localhost:8080). For production on Sevalla, use a Dockerfile‑based build. To use in Cursor, add the server’s SSE URL to your mcp.json file.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"python demo mcp server": {
"dogs-mcp-server": {
"command": "python",
"args": [
"-m",
"venv",
"venv"
]
}
}
}
}
McpServers
{
"dogs-mcp-server": {
"command": "python",
"args": [
"-m",
"venv",
"venv"
]
}
}
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
1. Set up your Python environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
2. 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.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



