Mcp Sse Job Tracker

by dineshamagi

139 downloads
Not rated
GitHub

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

- 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:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Mcp Sse Job Tracker
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. 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

2.Run sse_client
Terminal 2
bash
python sse_cleint.py
``

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.