MCP Task Queue — EC2 + SSE
Enables Cursor on your laptop to connect to an MCP server on EC2 via SSE/HTTPS to manage a task queue stored in Postgres, supporting task listing, status updates, and work prompt generation.
README
MCP Task Queue — EC2 + SSE
Pure Python MCP setup so Cursor on your laptop works on tasks stored in a Postgres DB on EC2. Cursor talks MCP over SSE/HTTPS to the EC2 MCP server; it never touches Postgres directly.
Architecture
Jira Issue
↓
n8n Workflow (triggered by Jira)
↓ HTTP POST /ingest
EC2: Ingest API (FastAPI) — validates, normalizes, writes to Postgres
↓
EC2: Postgres — tasks table (pending, in_progress, completed, failed)
↑
EC2: MCP Server (SSE) — tools operate on tasks, exposes /mcp/sse
↑ SSE/HTTPS
Laptop: Cursor — configured to connect to EC2 MCP server
Project layout
app/
__init__.py
config.py # DATABASE_URL, INGEST_TOKEN
database.py # async Postgres task CRUD
ingest_api.py # FastAPI routes: /health, POST /ingest
mcp_server.py # FastMCP with tools (list_tasks, get_task, ...)
mcp_sse.py # SSE transport wiring
ingest_app.py # Entry: uvicorn ingest_app:app
mcp_sse_app.py # Entry: uvicorn mcp_sse_app:app
init_db.py # Create tasks table
env.example # Template for .env
Install
python -m venv .venv
source .venv/bin/activate # Windows: .\.venv\Scripts\Activate.ps1
pip install -r requirements.txt
cp env.example .env
# Edit .env: DATABASE_URL, INGEST_TOKEN
Database migrations
Create the tasks table once:
python init_db.py
Schema: id, source, title, instructions, acceptance_criteria (JSONB), file_hints (JSONB), meta (JSONB), status, timestamps (created_at, started_at, completed_at, failed_at, updated_at), completion_note, failure_reason, previous_status.
Run the services
Ingest API (n8n webhook)
uvicorn ingest_app:app --host 0.0.0.0 --port 8787
GET /health— health checkPOST /ingest— requires headerX-Ingest-Token: <INGEST_TOKEN>
MCP SSE server (Cursor endpoint)
uvicorn mcp_sse_app:app --host 0.0.0.0 --port 8080
GET /health— health checkGET /mcp/sse— MCP SSE endpoint (Cursor connects here)POST /mcp/messages/— MCP message endpoint (used by client after SSE)
Configure Cursor (client)
Configure Cursor on your laptop to talk to the EC2 MCP server over SSE. Copy mcp.json.example to .cursor/mcp.json or add to global MCP settings:
{
"mcpServers": {
"ec2-tasks": {
"url": "https://<YOUR_DOMAIN_OR_IP>/mcp/sse",
"env": {}
}
}
}
Replace <YOUR_DOMAIN_OR_IP> with your EC2 hostname or IP. If using a non-standard port, include it: https://example.com:8080/mcp/sse. For local dev: http://localhost:8080/mcp/sse.
Important: Cursor connects to the EC2 MCP server over SSE/HTTPS. EC2 talks to Postgres; Cursor never touches the database.
Rules & work prompt
Edit rules.md in the project root to add rules and instructions the MCP server will include in work prompts. This content is combined with each task and passed to the agent.
- MCP prompt
task_work_prompt(task_id)— Returns the full prompt (rules + task) to pass to the agent. - Tool
get_work_prompt(task_id)— Same content as JSON for programmatic use.
MCP tools
| Tool | Description |
|---|---|
list_tasks |
List tasks (inbox by default; filter by status) |
get_task |
Get full task by id |
get_work_prompt |
Build full prompt (rules + task) for a task id |
enqueue_task |
Manually create a task (for testing) |
start_task |
Set status to in_progress |
complete_task |
Set status to completed |
fail_task |
Set status to failed |
n8n HTTP Request (Jira → ingest)
- Method: POST
- URL:
https://<YOUR_EC2>/ingest(or via ngrok / load balancer) - Headers:
Content-Type: application/json,X-Ingest-Token: <INGEST_TOKEN> - Body: JSON with at least
id,instructions; optionalsource,title,acceptance_criteria,file_hints,meta
EC2 deployment notes
- Environment: Set
DATABASE_URLandINGEST_TOKEN(e.g. via.envor systemd env). - Processes:
- Ingest:
uvicorn ingest_app:app --host 0.0.0.0 --port 8787 - MCP SSE:
uvicorn mcp_sse_app:app --host 0.0.0.0 --port 8080
- Ingest:
- Reverse proxy (Nginx):
- Proxy
/ingestand/healthto ingest on 8787. - Proxy
/mcp/sseand/mcp/messages/to MCP on 8080. - Use HTTPS and keep MCP paths under the same origin.
- Proxy
- ngrok:
- Expose both ports or put a reverse proxy in front and expose one.
- Example:
ngrok http 8080for MCP,ngrok http 8787for ingest (separate tunnels).
Ingest behavior
- New task → insert as
pending. - Existing, status
pendingorin_progress→ return duplicate error (no overwrite). - Existing, status
completedorfailed→ upsert as newpendingversion, preserveprevious_status.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.