streamable-httpupdated 1mo ago
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.
Was kannst du mit JobsPipe machen?
JobsPipe MCP Server
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.
- Live endpoint (authenticated):
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). - Demo endpoint (no key):
https://jobspipe.dev/mcp— for trying the protocol out. Itssearch_jobsreturns the REST call to run for your query, not live postings. - Server card:
/.well-known/mcp/server-card.json - Docs: https://docs.jobspipe.dev
- Agent skills:
npx skills add jobspipe/skills- the official JobsPipe skill collection (job search, stack scan, MCP setup, webhooks, agent discovery)
Tools
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 |
Setup
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.
Trying it without a key
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}'
Related
- jobspipe-cli: CLI and agent skill wrapping the same API
- jobspipe-python: official Python SDK
- REST API reference
Installation
JobsPipe zu deinem Client hinzufügen. Wähl den, den du nutzt.
claude mcp add --transport http jobspipe https://mcp.jobspipe.dev/mcpcodex mcp add jobspipe --url https://mcp.jobspipe.dev/mcp{
"mcpServers": {
"jobspipe": {
"url": "https://mcp.jobspipe.dev/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"jobspipe": {
"type": "http",
"url": "https://mcp.jobspipe.dev/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"jobspipe": {
"url": "https://mcp.jobspipe.dev/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"jobspipe": {
"serverUrl": "https://mcp.jobspipe.dev/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
4 Tools
JobsPipe stellt einem verbundenen Agent 4 Tools bereit.
- search_jobs
- Returns the REST call to run for your query — not live postings
- list_pricing_plans
- List JobsPipe plans with monthly USD price, request quota and features
- list_job_sources
- List the ATS and job-board sources JobsPipe normalizes, with coverage and freshness notes
- search_upwork_jobs
- Search live Upwork postings with budget, skills and client signals
Score
65 / 100
Gut
- Dokumentation22/25
- Pflege16/25
- Vertrauen9/20
- Funktionsumfang6/15
- Installation12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 32 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 4 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 1.0.1Aktuell | 31. Juli 2026 |
| 1.0.0 | 17. Juli 2026 |