{"$schema":"https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json","name":"com.reqbeat/hiring-signals","title":"Reqbeat Hiring Signals","description":"Find companies hiring for a role and geo, qualify them, and watch them for changes.","version":"1.1.2","websiteUrl":"https://reqbeat.com/mcp/","icons":[{"src":"https://reqbeat.com/assets/mcp/logo-400.png","mimeType":"image/png","sizes":["400x400"]},{"src":"https://reqbeat.com/assets/mcp/logo-128.png","mimeType":"image/png","sizes":["128x128"]},{"src":"https://reqbeat.com/favicon.svg","mimeType":"image/svg+xml","sizes":["any"]}],"repository":{"url":"https://github.com/reqbeat/mcp-server","source":"github"},"remotes":[{"type":"streamable-http","url":"https://mcp.reqbeat.com/mcp","headers":[{"name":"X-API-Key","description":"Reqbeat plane API key. Optional: without it the server runs in rate-limited demo mode.","isRequired":false,"isSecret":true}]}],"_meta":{"io.modelcontextprotocol.registry/publisher-provided":{"tools":[{"name":"is_hiring","title":"Is this company hiring?","description":"WHEN an agent already holds a company and needs to qualify it -- the cheap gate before spending a richer call. ATS/board-only and freshness-floored. Takes the integer `company_id` from an earlier result, not a company name or domain. company_id=1234 -> is_hiring true, open_req_count 7, coverage_status \"ats_direct_hit\". company_id=5678 -> is_hiring false with coverage_status \"no_ats_signal\" -- that company has no ATS coverage yet, which is not evidence it is quiet, so do not score it as a negative. No key yet? Pass `plane_api_key` as an empty string and the call answers with a signup link instead of an auth error. To find companies in the first place, use `who_is_hiring_for`.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"get_open_reqs","title":"Open requisitions for a company","description":"The company's current active reqs, deduped across boards --\n    ATS/board-only, freshness-floored. `function` must be a function id\n    (as seen in prior results); a plain role name like 'engineering' is\n    rejected with an explicit error rather than an empty result. `limit`\n    is bounded: an oversized page is rejected rather than truncated.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"hiring_pulse","title":"Hiring velocity and direction","description":"One number set for one company: how many reqs it opened in the\n    last 30 days, a `velocity` ratio of that against the 30 days before\n    it, a `direction` of up / flat / down between the two, a surge flag,\n    and `momentum` -- postings published per week, a flow rather than a\n    stock. Use it to rank or score a company you already hold a\n    `company_id` for. Freshness is controlled by `max_age` (seconds); a\n    company with no ATS/board data yet returns `{job_id, status:\n    \"crawling\"}` instead of a body -- poll again later, do not read it as\n    \"not hiring\". For the whole picture in one round-trip use\n    `pre_action_brief`; for a cheap yes/no use `is_hiring`.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"who_is_hiring_for","title":"Find companies hiring for a role","description":"WHEN an agent needs to FIND the companies worth working -- the sourcing step, before it knows which companies exist. Reverse who's-hiring-for {role, geo} search: companies with active reqs matching `role`/`geo`/`since`, deduped by company, keyset-paginated via `cursor`. `role` is free text matched against the posting title, not an id. `geo` is resolved to a stored country before matching; an unresolvable one is an explicit error, never a quietly partial page. `limit` is bounded -- page through the full set with `cursor` instead of raising it. Billed per company returned (~0.10 USD each) -- an empty result bills nothing. role=\"backend engineer\", geo=\"USA\" -> the companies with matching active reqs, each with its pulse and its matched reqs. geo=\"Atlantis\" -> an explicit unresolvable-country error rather than an empty page. No key yet? On the hosted HTTP endpoint the first calls are free: pass `plane_api_key` as an empty string and the search runs on a shared demo credential -- a smaller page, billed to nobody -- until a per-IP limit is reached, after which the answer becomes a signup link whose minted key finishes this exact search. On any other transport a blank key answers with that signup link straight away. Already holding a company_id and only need a yes/no? Use `is_hiring`.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"search_jobs","title":"Search open roles","description":"Flat, role-granular job search -- the individual open roles across\n    companies matching `role` (function) / `geo` (country) / `since`, one\n    row per logical req (each with its own `company_id` + `req_key`),\n    ATS-only + freshness-floored. Keyset-paginated via the opaque `cursor`\n    (a prior call's `next_cursor`). Use `who_is_hiring_for` for the\n    company-granular reverse view. `role` must be a function id (as seen\n    in prior results); a plain role name like 'engineering' is rejected\n    with an explicit error rather than an empty result -- pass plain\n    language as `q` instead, which searches the posting's own title,\n    expanded semantically to nearby titles, and reports each row's\n    `relevance` (0-1). `q` is independent of `role`: pass both to search\n    titles within one function. `sort` is 'relevance' (the default with a\n    `q`) or 'recency'; omit both and the page keeps its stable default\n    order. `limit` is bounded: an oversized page is rejected rather than\n    truncated, so page through the full set with `cursor` instead of\n    raising `limit`. No key yet? On the hosted HTTP endpoint the first\n    calls are free: send no `X-API-Key` header and the search\n    runs on a shared demo credential -- a smaller page, billed to nobody,\n    and the result says so -- until a per-IP limit is reached, after which\n    the answer becomes a signup link whose minted key finishes this exact\n    search. On any other transport a blank key answers with that signup\n    link straight away.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"get_role","title":"Get one role","description":"One open role's detail, addressed by the `company_id` + `req_key`\n    pair every `search_jobs` row already carries -- the follow-up call\n    for a role you hold an identifier for, instead of re-pulling the whole\n    company with `get_open_reqs`. Scoped exactly as `search_jobs` is:\n    ATS-only and freshness-floored. The body adds `raw_title` (the\n    posting's own title) and `boards`, the full deduped list of boards\n    reporting this req. A role that does not exist, is closed, or has not\n    reached the freshness floor is an explicit error, never an empty\n    success -- and it is not billed. No key yet? On the hosted HTTP\n    endpoint the first calls are free: send no `X-API-Key` header and\n    the lookup runs on a shared demo credential, billed to\n    nobody and marked as such, until a per-IP limit is reached.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"pre_action_brief","title":"Pre-action brief for a company","description":"Everything an agent needs before acting on one company, in one\n    bounded round-trip instead of five: the hiring pulse, its top open\n    reqs deduped across boards, first-hire-by-function events,\n    hardest-to-fill (reposted) reqs and ATS-vendor migrations, pre-joined\n    and each section capped so the payload stays compact. Use it right\n    before writing outreach or a qualification note for a `company_id`\n    you already hold. Honors `max_age` (seconds); a company with no\n    ATS/board data returns `{job_id, status: \"crawling\"}`. If you only\n    need the velocity number, `hiring_pulse` is cheaper.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"get_changes","title":"Change feed since cursor","description":"The change feed, not a search: ledger events -- a req opened,\n    re-observed, reposted or closed -- with `event_seq > since`,\n    ascending, plus `next_cursor`. Replay with `next_cursor` instead of\n    polling or re-searching; an empty page bills nothing and one `change`\n    unit is metered per event returned. Filter by `company_id`, or by one\n    exact `event_type`. `limit` is bounded -- page with the cursor rather\n    than raising it. Free-tier callers see events at the same freshness\n    floor as every other free read. This is the pull-based twin of\n    `watch_company` (push via webhook).","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"find_company","title":"Find company by domain or name","description":"WHEN you hold a company's website or name but not the `company_id`\n    every company-scoped tool takes (`is_hiring`, `get_open_reqs`,\n    `hiring_pulse`, `pre_action_brief`, `watch_company`). Pass exactly one of\n    `domain` or `name`; both or neither is an error naming that rule.\n    `domain` takes a bare host or a full URL and matches exactly\n    ({\"domain\": \"https://www.stripe.com/jobs\"} -> the companies at\n    `stripe.com`); `name` returns up to five candidates, each with a\n    `match_confidence` -- 1.0 for an exact name, 0.8 for a match once legal\n    suffixes are dropped. Each company carries `company_id`, `company_name`,\n    `company_domain`, `country_code` and `coverage_status`, and no hiring\n    signal: ask `is_hiring` for that. Nothing matching is an empty\n    `companies` list, never an error. Never billed. No key yet? On the hosted\n    HTTP endpoint send no `X-API-Key` header and the lookup runs on a shared\n    demo credential until a per-IP limit is reached.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"register_webhook","title":"Register a webhook endpoint","description":"Register the delivery target a watch fires to, and get back the\n    `webhook_endpoint_id` `watch_company` needs -- call this first if you\n    do not already hold one. Idempotent: registering the same `url` twice\n    returns the same id, so retrying is safe and never leaves you with two\n    endpoints. `secret` is optional; supply one to verify the\n    `X-Plane-Signature` on delivered payloads, omit it and one is\n    generated (it is never returned). Registration itself is free -- the\n    `watch_company` call that follows is what bills.\n\n    Plane session only: `webhook_endpoints` is plane-owned and this tool reads\n    no corpus table.","annotations":{"readOnlyHint":false,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"watch_company","title":"Watch a company","description":"Subscribe to a company's hiring events on a registered webhook --\n    `webhook_endpoint_id` must belong to the same customer as the\n    authenticated key. Meters one `watch` unit.\n\n    A free key holds a limited number of watches at once; the one past that\n    is refused with the same 402 the REST route raises, and cancelling a\n    watch returns the slot.","annotations":{"readOnlyHint":false,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true}},{"name":"list_watches","title":"List active watches","description":"WHEN you need to see what you are subscribed to -- before adding a\n    watch, or to find the `id` `cancel_watch` takes. Returns your live\n    watches newest first, cancelled ones excluded: {} -> {\"watches\": [{\"id\":\n    ..., \"company_id\": ..., \"event_types\": [...], \"webhook_endpoint_id\": ...,\n    \"status\": \"firing\", ...}]}. Each also reports its heartbeat --\n    `last_fired_at`, `fires_last_7d`, `fires_last_30d`, `fires_last_hour`\n    against `max_fires_per_hour`, `rate_limited`, and a one-word `status` --\n    so a watch silent because nobody is hiring reads differently from one\n    that can never match or whose endpoint is failing. Never billed. Needs\n    your key: a blank one returns a signup link.\n\n    Plane session only: `watch_subscriptions` is plane-owned.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":true}},{"name":"cancel_watch","title":"Cancel a watch","description":"WHEN a watch should stop firing. Takes the `id` `watch_company`\n    returned (or `list_watches` lists): {\"watch_id\": 42} -> {\"id\": 42,\n    \"canceled\": true}. Idempotent -- cancelling a watch you already cancelled\n    succeeds again. An id that is not one of your watches is an error,\n    identical whether it belongs to someone else or does not exist. Frees the\n    slot a free key's watch limit counts. Never billed. Needs your key: a\n    blank one returns a signup link.\n\n    Plane session only: `watch_subscriptions` is plane-owned.","annotations":{"readOnlyHint":false,"destructiveHint":true,"idempotentHint":true,"openWorldHint":true}},{"name":"write_outcome","title":"Record a conversion outcome","description":"Write back a conversion outcome for `company_id` -- the\n    label-flywheel substrate. Appends to `outcome_labels` scoped to the\n    caller's own customer.\n\n    Plane session only: `outcome_labels` is plane-owned (Phase 1 dropped its\n    one foreign key into the corpus) and this tool reads no corpus table.","annotations":{"readOnlyHint":false,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true}}]}}}