← Registry

API Tools

jobspipe.dev

Provides a unified API to search and retrieve job postings from multiple sources.

3 endpoints6 known toolsFirst detected July 13, 2026Last detected August 19, 2026

ENDPOINT 1

https://jobspipe.dev/mcp

No auth detected

MCP server metadata

Name
jobspipe
Version
1.0.0
Capabilities
toolsresources
Server instructions

JobsPipe MCP server. Read-only tools over a unified jobs and technographics dataset: list the job-board/ATS sources JobsPipe normalizes, list pricing plans, and search live Upwork postings. Resources expose the OpenAPI spec, pricing and source catalog. None of the tools mutate data. For full job search and stack scans use the REST API at https://api.jobspipe.dev (see https://docs.jobspipe.dev); an API key (Bearer jp_live_...) from https://jobspipe.dev/signup is required there.

Known tools 4

search_jobs

Search live, normalized job postings across 30+ sources by title, skill/tech, country, remote, seniority, employment type and recency.

Inferred read-only
list_job_sources

List the ATS and job-board sources JobsPipe normalizes into a single JSON schema, with coverage and freshness notes.

Inferred read-only
list_pricing_plans

List JobsPipe pricing plans with monthly price in USD, monthly job quota and included features.

Inferred read-only
search_upwork_jobs

Search live Upwork job postings ingested by JobsPipe.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.jobspipe]
url = "https://jobspipe.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "jobspipe": {
      "type": "http",
      "url": "https://jobspipe.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: jobspipe
Remote MCP URL: https://jobspipe.dev/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "jobspipe": {
      "url": "https://jobspipe.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "jobspipe": {
      "type": "http",
      "url": "https://jobspipe.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "jobspipe",
  "transport": "streamable-http",
  "url": "https://jobspipe.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://mcp.jobspipe.dev/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.jobspipe-dev]
url = "https://mcp.jobspipe.dev/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "jobspipe-dev": {
      "type": "http",
      "url": "https://mcp.jobspipe.dev/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: jobspipe-dev
Remote MCP URL: https://mcp.jobspipe.dev/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "jobspipe-dev": {
      "url": "https://mcp.jobspipe.dev/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "jobspipe-dev": {
      "type": "http",
      "url": "https://mcp.jobspipe.dev/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "jobspipe-dev bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "jobspipe-dev",
  "transport": "streamable-http",
  "url": "https://mcp.jobspipe.dev/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 3

https://docs.jobspipe.dev/mcp

No auth detected

MCP server metadata

Name
jobspipe-docs
Version
1.0.0
Capabilities
toolsresources
Server instructions

JobsPipe documentation MCP (the 'learn' surface). Search and list the JobsPipe developer docs. The 'do' surface (job search, stack scan) is the product MCP at https://jobspipe.dev/mcp.

Known tools 2

search_docs

Search the JobsPipe developer documentation by keyword.

Inferred read-only
list_docs

List every JobsPipe documentation page with title and URL.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.jobspipe-docs]
url = "https://docs.jobspipe.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "jobspipe-docs": {
      "type": "http",
      "url": "https://docs.jobspipe.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: jobspipe-docs
Remote MCP URL: https://docs.jobspipe.dev/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "jobspipe-docs": {
      "url": "https://docs.jobspipe.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "jobspipe-docs": {
      "type": "http",
      "url": "https://docs.jobspipe.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "jobspipe-docs",
  "transport": "streamable-http",
  "url": "https://docs.jobspipe.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for jobspipe.dev was fetched 2026-07-25T22:32:33.266Z and is being refreshed.

Trust status Neutral

jobspipe.dev is assessed as Neutral: No suspicious signals found, but no strong positive signal either

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.