Mcp Sse Job Tracker
About
mcp client-server example using "SSE" for real-time updates. It allows submitting jobs to the server, which are processed asynchronously, and the client polls the server for job status updates.
Details
- Author
- dineshamagi
- Downloads
- 139
- Categories
- Other
Jump to
- Submit asynchronous jobs using MCP tools
- Track job status via custom MCP resources
- Uses SSE transport for client‑server communication
- Simple two‑script setup (server and client)
- Requires only Python 3.8+ and the mcp package
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
Mcp Sse Job TrackerCommand (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
Ensure Python 3.8+ and install the mcp package (pip install mcp). Then run sse_server.py in one terminal and sse_client.py in a second terminal.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp sse job tracker": {
"mcp-sse-job-tracker": {
"command": "python",
"args": [
"sse_server.py"
]
}
}
}
}
McpServers
{
"mcp-sse-job-tracker": {
"command": "python",
"args": [
"sse_server.py"
]
}
}
MCP SSE JOB
├── sse_server.py
├── sse_client.py
Submit asynchronous jobs using MCP tools
Track job status via custom MCP resources
- SSE transport
Requirements
python > 3.8
pip install mcp
Execution
1.Run sse_server
Terminal 1
``bash ``
python sse_server.py
bash 2.Run sse_client
Terminal 2
python sse_cleint.py
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



