search

Pack: remotive · Endpoint: https://gateway.pipeworx.io/remotive/mcp

Search Remotive’s curated remote-only job board by free-text query, category slug, and/or company name. Returns job listings with title, company, location tags, salary range, job type, and apply URL.

Parameters

NameTypeRequiredDescription
searchstringnoFree-text — title / description
categorystringnoCategory slug (e.g. “software-dev”, “design”)
company_namestringnoFilter to a specific company
limitnumbernoMax jobs returned (default 25)

Example call

Arguments

{
  "search": "Python backend engineer"
}

curl

curl -X POST https://gateway.pipeworx.io/remotive/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search","arguments":{"search":"Python backend engineer"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search', {
  "search": "Python backend engineer"
});

More examples

{
  "search": "React",
  "category": "software-dev",
  "company_name": "GitLab",
  "limit": 10
}

Response shape

FieldTypeDescription
jobsarrayArray of remote job listings
countnumberTotal number of jobs found
Full JSON Schema
{
  "type": "object",
  "properties": {
    "jobs": {
      "type": "array",
      "description": "Array of remote job listings",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Job ID"
          },
          "title": {
            "type": "string",
            "description": "Job title"
          },
          "description": {
            "type": "string",
            "description": "Job description"
          },
          "category": {
            "type": "string",
            "description": "Job category slug"
          },
          "company_name": {
            "type": "string",
            "description": "Company name"
          },
          "company_logo": {
            "type": "string",
            "description": "Company logo URL"
          },
          "url": {
            "type": "string",
            "description": "Job listing URL"
          },
          "publication_date": {
            "type": "string",
            "description": "Publication date ISO format"
          },
          "salary": {
            "type": "string",
            "description": "Salary range if available"
          }
        }
      }
    },
    "count": {
      "type": "number",
      "description": "Total number of jobs found"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "remotive": {
      "url": "https://gateway.pipeworx.io/remotive/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026