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
| Name | Type | Required | Description |
|---|---|---|---|
search | string | no | Free-text — title / description |
category | string | no | Category slug (e.g. “software-dev”, “design”) |
company_name | string | no | Filter to a specific company |
limit | number | no | Max 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
| Field | Type | Description |
|---|---|---|
jobs | array | Array of remote job listings |
count | number | Total 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.