get_job
Pack: arbeitnow · Endpoint: https://gateway.pipeworx.io/arbeitnow/mcp
Fetch the full details of a single Arbeitnow job posting by its slug, INCLUDING the full HTML description. There is no single-job endpoint upstream, so this scans the most recent pages (~3) to find the matching slug. If the job has scrolled off the recent listings it cannot be retrieved — use search_jobs instead.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | The job slug (from list_jobs/search_jobs results). |
Example call
Arguments
{
"slug": "senior-backend-engineer-berlin-startup"
}
curl
curl -X POST https://gateway.pipeworx.io/arbeitnow/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_job","arguments":{"slug":"senior-backend-engineer-berlin-startup"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_job', {
"slug": "senior-backend-engineer-berlin-startup"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"arbeitnow": {
"url": "https://gateway.pipeworx.io/arbeitnow/mcp"
}
}
}
See Getting Started for client-specific install steps.