search_jobs

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

Keyword-search current RemoteOK remote-job listings. Matches the query (case-insensitive) against job position, company name, or any tag. Tech-heavy board; keyless. Returns matching postings (id, position, company, location, tags, salary range, date, url). Salaries are USD when present.

Parameters

NameTypeRequiredDescription
querystringyesKeyword to match against position, company, or tags (e.g. “javascript”, “designer”).
limitnumbernoMax jobs to return (default 20).

Example call

Arguments

{
  "query": "javascript"
}

curl

curl -X POST https://gateway.pipeworx.io/remoteok/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_jobs","arguments":{"query":"javascript"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_jobs', {
  "query": "javascript"
});

More examples

{
  "query": "python developer",
  "limit": 30
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026