jobs-mcp-server
MCP server that exposes a MongoDB healthcare jobs collection, enabling listing, searching, creating, updating, deleting jobs and getting summary counts.
README
jobs-mcp-server
MCP server that exposes your MongoDB healthcare jobs collection to any MCP-compatible client — ChatGPT (via the OpenAI MCP connector), Claude Desktop, or any other MCP host.
Tools available
| Tool | What it does |
|---|---|
list_jobs |
Paginated list with filters (status, job_type, client_name, is_active) |
get_job |
Fetch a single job by _id |
search_jobs |
Full-text search across title, client, location, description, notes |
create_job |
Insert a new job |
update_job |
Patch any fields on an existing job |
delete_job |
Soft-delete (is_active=false) or hard-delete |
jobs_summary |
Dashboard counts by status and job type |
Setup
1. Install dependencies
cd jobs-mcp-server
npm install
2. Configure environment
Create a .env file or export the variables before running:
export MONGO_URI="mongodb://localhost:27017" # your MongoDB connection string
export DB_NAME="xpress_health" # your database name
export COLLECTION="jobs" # collection name (default: jobs)
For MongoDB Atlas:
export MONGO_URI="mongodb+srv://user:password@cluster.mongodb.net/?retryWrites=true&w=majority"
3. Run the server
node server.js
The server communicates over stdio (standard MCP transport).
Connect to ChatGPT
ChatGPT supports MCP servers via the OpenAI MCP remote connector.
Since ChatGPT requires an HTTP/SSE endpoint (not raw stdio), you need to wrap the server with a small HTTP bridge.
Step 1 – Install the SSE bridge
npm install -g @modelcontextprotocol/server-stdio-to-sse
# or use npx without installing globally
Step 2 – Run the bridge
npx @modelcontextprotocol/server-stdio-to-sse \
--port 3100 \
-- node /absolute/path/to/jobs-mcp-server/server.js
This starts an SSE HTTP server on http://localhost:3100.
Step 3 – Expose it publicly (for ChatGPT to reach it)
ChatGPT needs a public HTTPS URL. Use ngrok or any tunnel:
# Install ngrok: https://ngrok.com/download
ngrok http 3100
# → gives you: https://abc123.ngrok-free.app
Step 4 – Add to ChatGPT
- Go to ChatGPT → Settings → Beta Features → MCP Servers (or the Connectors panel)
- Click Add Server
- Enter the URL:
https://abc123.ngrok-free.app/sse - Give it a name:
Healthcare Jobs - Save — ChatGPT will auto-discover the 7 tools
Now you can ask ChatGPT:
- "List all pending jobs"
- "Search for wound care jobs in Cork"
- "Create a new personal care job for Mary Delaney"
- "Give me a summary of all jobs by status"
Connect to Claude Desktop
Add this to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"jobs": {
"command": "node",
"args": ["/absolute/path/to/jobs-mcp-server/server.js"],
"env": {
"MONGO_URI": "mongodb://localhost:27017",
"DB_NAME": "xpress_health",
"COLLECTION": "jobs"
}
}
}
}
Restart Claude Desktop — the jobs tools will appear automatically.
Connect to Cursor / Windsurf / VS Code
Add to your MCP config (.cursor/mcp.json or equivalent):
{
"mcpServers": {
"jobs": {
"command": "node",
"args": ["/absolute/path/to/jobs-mcp-server/server.js"],
"env": {
"MONGO_URI": "mongodb://localhost:27017",
"DB_NAME": "xpress_health"
}
}
}
}
Production deployment (HTTPS without ngrok)
Deploy the SSE bridge on any Node.js host (Railway, Render, Fly.io, VPS):
# On your server
MONGO_URI="mongodb+srv://..." DB_NAME="xpress_health" \
npx @modelcontextprotocol/server-stdio-to-sse \
--port 3100 \
-- node /app/jobs-mcp-server/server.js
Point your domain / reverse proxy at port 3100 with HTTPS, then use that URL in ChatGPT.
Example ChatGPT prompts once connected
List all jobs scheduled this week
Show me all In Progress jobs for wound care
Create a job: Morning Personal Care for Patrick Cronin, Personal Care type, scheduled 2026-05-20
Mark job 683abc... as Completed
How many jobs are in each status?
Search for jobs in Kerry
Delete job 683abc... (soft delete)
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.