Search live job postings from 30+ ATS feeds and job boards, normalized to one schema.
MCPpedia last refreshed this data
io.github.jobspipe/mcp is an MCP server that search live job postings from 30+ ATS feeds and job boards, normalized to one schema. Its tool list has not been published yet, requires no API key, and scores 86/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"jobspipe": {
"url": "https://jobspipe.dev/mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The hosted Model Context Protocol server for JobsPipe: live job postings from 30+ ATS feeds and job boards, normalized into one schema, queryable by AI agents.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'skills' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked skills against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Transport for TMCP using STDIO
The graph based agentic IDE
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
Buddhist canon tools: search, passages, cross-canon parallels, dictionaries — all URN-cited.
MCP Security Weekly
Get CVE alerts and security updates for io.github.jobspipe/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The hosted Model Context Protocol server for JobsPipe: live job postings from 30+ ATS feeds and job boards, normalized into one schema, queryable by AI agents.
There are two servers. Live job results come only from the authenticated one.
https://mcp.jobspipe.dev/mcp — remote, streamable HTTP; nothing to run locally. Requires a Bearer API key (free tier: 100 credits/month at jobspipe.dev/signup).https://jobspipe.dev/mcp — for trying the protocol out. Its search_jobs returns the REST call to run for your query, not live postings./.well-known/mcp/server-card.jsonnpx skills add jobspipe/skills - the official JobsPipe skill collection (job search, stack scan, MCP setup, webhooks, agent discovery)Live server (mcp.jobspipe.dev/mcp, Bearer key required):
| Tool | What it does |
|---|---|
search_jobs | Search live, normalized job postings by title, skill/tech, country, remote, seniority, employment type and recency. Returns the postings. |
list_pricing_plans | List JobsPipe plans with monthly USD price, request quota and features |
Demo server (jobspipe.dev/mcp, no key):
| Tool | What it does |
|---|---|
search_jobs | Returns the REST call to run for your query — not live postings |
list_job_sources | List the ATS and job-board sources JobsPipe normalizes, with coverage and freshness notes |
list_pricing_plans | List JobsPipe plans with monthly USD price, request quota and features |
search_upwork_jobs | Search live Upwork postings with budget, skills and client signals |
Claude Code:
claude mcp add --transport http jobspipe https://mcp.jobspipe.dev/mcp \
--header "Authorization: Bearer jp_live_YOUR_KEY"
Generic client config (Cursor, Windsurf, and others):
{
"mcpServers": {
"jobspipe": {
"url": "https://mcp.jobspipe.dev/mcp",
"headers": {
"Authorization": "Bearer jp_live_YOUR_KEY"
}
}
}
}
Keys start with jp_live_ and come from the dashboard (Settings -> API Keys). An x-api-key header also works.
Point any MCP client at https://jobspipe.dev/mcp — the discovery tools work fully, and search_jobs hands back the exact REST request to run instead of the postings. For sample job data in the live schema without a key, use the REST sandbox instead:
curl -X POST https://api.jobspipe.dev/v1/sandbox/jobs/search \
-H "Content-Type: application/json" \
-d '{"job_title_or":["software engineer"],"remote":true}'