Back to Browse

Mcp MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Search live job postings from 30+ ATS feeds and job boards, normalized to one schema.

About

Search live job postings from 30+ ATS feeds and job boards, normalized to one schema.

Remote endpoints: streamable-http: https://jobspipe.dev/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

4 tools verified · Open access · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-jobspipe-mcp": {
      "url": "https://jobspipe.dev/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

JobsPipe MCP Server

smithery badge

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. Its search_jobs returns 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):

ToolWhat it does
search_jobsSearch live, normalized job postings by title, skill/tech, country, remote, seniority, employment type and recency. Returns the postings.
list_pricing_plansList JobsPipe plans with monthly USD price, request quota and features

Demo server (jobspipe.dev/mcp, no key):

ToolWhat it does
search_jobsReturns the REST call to run for your query — not live postings
list_job_sourcesList the ATS and job-board sources JobsPipe normalizes, with coverage and freshness notes
list_pricing_plansList JobsPipe plans with monthly USD price, request quota and features
search_upwork_jobsSearch 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

Reviews

No reviews yet

Be the first to review this server!