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)
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。