get_job
Pack: remoteok · Endpoint: https://gateway.pipeworx.io/remoteok/mcp
Get the full RemoteOK job posting for a given job id, including the full HTML description. Use an id returned by list_jobs or search_jobs. Only jobs in the current ~100 most-recent listings are available. Salaries are USD when present.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | RemoteOK job id (string), e.g. “1132995”. |
Example call
Arguments
{
"id": "1132995"
}
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":"get_job","arguments":{"id":"1132995"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_job', {
"id": "1132995"
});
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.