Tool tree
Workday + Indeed + Glassdoor + 30 ATS sources, normalized JSON, free tier. The data pipeline of every job posting on the web.
search_job_postingsanswer
Search live job postings from the JobsPipe dataset. Returns normalized rows (title, budget, skills, client country, posted date) from the public Jobs API. The first 100 results are available without authentication.
View tool JSON
{
"name": "search_job_postings",
"kind": "answer",
"impl": "imperative",
"description": "Search live job postings from the JobsPipe dataset. Returns normalized rows (title, budget, skills, client country, posted date) from the public Jobs API. The first 100 results are available without authentication.",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 200,
"description": "Number of postings to return (max 200)."
},
"offset": {
"type": "integer",
"minimum": 0,
"description": "Number of postings to skip for pagination."
},
"sort": {
"type": "string",
"enum": [
"posted_on",
"title",
"budget",
"hourly_min",
"proposals",
"client_total_spent",
"client_rating",
"client_country",
"tier"
],
"description": "Field to sort by."
},
"order": {
"type": "string",
"enum": [
"asc",
"desc"
],
"description": "Sort direction."
}
},
"required": []
},
"page": "/"
}scan_company_tech_stackact
Detect the technologies a company runs by scanning its website domain. Returns the detected technology stack. Some scans require an authenticated session.
View tool JSON
{
"name": "scan_company_tech_stack",
"kind": "act",
"impl": "imperative",
"description": "Detect the technologies a company runs by scanning its website domain. Returns the detected technology stack. Some scans require an authenticated session.",
"inputSchema": {
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Company domain to scan, e.g. stripe.com."
}
},
"required": [
"domain"
]
},
"page": "/"
}get_api_cataloganswer
Fetch the JobsPipe API catalog (RFC 9727 linkset) listing the API endpoints, OpenAPI spec, documentation, and health status for agent discovery.
View tool JSON
{
"name": "get_api_catalog",
"kind": "answer",
"impl": "imperative",
"description": "Fetch the JobsPipe API catalog (RFC 9727 linkset) listing the API endpoints, OpenAPI spec, documentation, and health status for agent discovery.",
"inputSchema": {
"type": "object",
"properties": {},
"required": []
},
"page": "/"
}navigate_to_pageact
Navigate the current browser tab to a JobsPipe page such as /developers, /jobs-api, /signup, or /changelog.
View tool JSON
{
"name": "navigate_to_page",
"kind": "act",
"impl": "imperative",
"description": "Navigate the current browser tab to a JobsPipe page such as /developers, /jobs-api, /signup, or /changelog.",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Site-relative path beginning with a slash."
}
},
"required": [
"path"
]
},
"page": "/"
}