list_jobs

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

List recent job postings from Arbeitnow, a keyless European (Germany-heavy) job board with many English-speaking and visa-sponsorship roles. Returns one page of postings in reverse-chronological order (newest first). HTML descriptions are omitted from this list — use get_job for the full description. Use page to paginate and remote_only to keep only remote jobs.

Parameters

NameTypeRequiredDescription
pagenumbernoPage number (default 1). 100 jobs per page.
remote_onlybooleannoIf true, keep only jobs where remote is true (default false).

Example call

Arguments

{
  "page": 1,
  "remote_only": false
}

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":"list_jobs","arguments":{"page":1,"remote_only":false}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_jobs', {
  "page": 1,
  "remote_only": false
});

More examples

{
  "page": 2,
  "remote_only": true
}

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.

Regenerated from source · build September 7, 2026