[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-lever-automation":3,"mdc-g8atyn-key":51,"related-repo-composio-lever-automation":1250,"related-org-composio-lever-automation":1337},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":46,"sourceUrl":49,"mdContent":50},"lever-automation","Lever Automation","automate Lever recruiting workflows","Automate recruiting workflows in Lever ATS -- manage opportunities, job postings, requisitions, pipeline stages, and candidate tags through the Composio Lever integration.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[14,16,19,22],{"name":10,"slug":9,"type":15},"tag",{"name":17,"slug":18,"type":15},"Hiring","hiring",{"name":20,"slug":21,"type":15},"Automation","automation",{"name":23,"slug":24,"type":15},"Recruiting","recruiting",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:44:38.095581",null,7603,[31,32,33,21,34,35,36,9,37,38,39,40,41,42,43,44,45],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","mcp","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":26,"stars":25,"forks":29,"topics":47,"description":48},[31,32,33,21,34,35,36,9,37,38,39,40,41,42,43,44,45],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Fcomposio-skills\u002Flever-automation","---\nname: Lever Automation\ndescription: \"Automate recruiting workflows in Lever ATS -- manage opportunities, job postings, requisitions, pipeline stages, and candidate tags through the Composio Lever integration.\"\nrequires:\n  mcp:\n    - rube\n---\n\n# Lever Automation\n\nAutomate your recruiting operations in **Lever ATS** directly from Claude Code. Manage job postings, track candidate pipelines, update requisitions, and query opportunities without leaving your terminal.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Flever](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Flever)\n\n---\n\n## Setup\n\n1. Add the Composio MCP server to your configuration:\n   ```\n   https:\u002F\u002Frube.app\u002Fmcp\n   ```\n2. Connect your Lever account when prompted by running any Lever command. The agent will provide an OAuth link to authenticate.\n3. Ensure your Lever API key has sufficient scopes for the operations you need (read\u002Fwrite access to postings, opportunities, requisitions).\n\n---\n\n## Core Workflows\n\n### 1. List and Filter Job Postings\n\nRetrieve all job postings with optional filtering by state, team, department, location, or commitment type.\n\n**Tool:** `LEVER_LIST_POSTINGS`\n\nKey parameters:\n- `state` -- filter by `published`, `internal`, `closed`, `draft`, `pending`, `rejected`\n- `team`, `department`, `location`, `commitment` -- narrow results by organizational attributes\n- `limit` (1-100) and `offset` -- paginate through large posting sets\n- `tag` -- filter by posting tag\n\nExample prompt: *\"List all published engineering job postings in Lever\"*\n\n---\n\n### 2. Browse Candidate Opportunities\n\nList all opportunities in the hiring pipeline with rich filtering for pipeline analysis and candidate tracking.\n\n**Tool:** `LEVER_LIST_OPPORTUNITIES`\n\nKey parameters:\n- `posting_id`, `stage_id`, `tag` -- filter by posting, pipeline stage, or tag\n- `email`, `contact_id` -- find opportunities for a specific candidate\n- `archived` -- filter by archived status (`true`\u002F`false`)\n- `created_at_start`, `created_at_end` -- date range filtering (ISO 8601)\n- `expand` -- expand `applications`, `contact`, `owner`, `stage`, `stageChanges`, `sources`, `sourcedBy` into full objects\n\nExample prompt: *\"Show me all active opportunities for the Senior Engineer posting, expanded with contact details\"*\n\n---\n\n### 3. Get Opportunity Details\n\nFetch comprehensive details about a single candidate opportunity including contact info, stage progression, sources, and applications.\n\n**Tool:** `LEVER_GET_OPPORTUNITY`\n\nKey parameters:\n- `opportunity` (required) -- the unique opportunity UID\n- `expand` -- comma-separated fields to expand: `contact`, `stage`, `owner`\n\nExample prompt: *\"Get full details for opportunity 31c9716c-d4e3-47e8-a6a1-54078a1151d6 with contact and stage expanded\"*\n\n---\n\n### 4. Manage Requisitions\n\nCreate, list, update, and delete requisitions to track headcount and hiring needs.\n\n**Tools:** `LEVER_LIST_REQUISITIONS`, `LEVER_GET_REQUISITION`, `LEVER_UPDATE_REQUISITION`, `LEVER_DELETE_REQUISITION`\n\nUpdate requires these fields:\n- `requisition` (required) -- UUID of the requisition\n- `requisitionCode` (required) -- unique code like `REQ-001`\n- `name` (required) -- requisition title\n- `headcountTotal` (required) -- number of positions (minimum 1)\n- `status` -- `open` or `closed`\n- Optional: `hiringManager`, `owner`, `department`, `team`, `location`, `compensationBand`\n\nExample prompt: *\"Update requisition REQ-001 to increase headcount to 3 and change status to open\"*\n\n---\n\n### 5. View Pipeline Stages\n\nRetrieve all hiring pipeline stages configured in your Lever account.\n\n**Tool:** `LEVER_LIST_STAGES`\n\nKey parameters:\n- `limit` (1-100) -- max items per page\n- `offset` -- pagination token from previous response\n\nExample prompt: *\"List all pipeline stages in our Lever account\"*\n\n---\n\n### 6. Manage Tags\n\nList all tags used to categorize candidates, opportunities, and postings.\n\n**Tool:** `LEVER_LIST_TAGS`\n\nKey parameters:\n- `limit` -- max items per page\n- `offset` -- pagination token\n\nExample prompt: *\"Show all candidate tags in Lever\"*\n\n---\n\n## Known Pitfalls\n\n- **Pagination required for large datasets:** `LEVER_LIST_OPPORTUNITIES` and `LEVER_LIST_POSTINGS` default to 100 results max per page. Always check for an `offset` token in the response and iterate to get complete results.\n- **Expand parameter format:** The `expand` field on `LEVER_LIST_OPPORTUNITIES` accepts an array of strings, while on `LEVER_GET_OPPORTUNITY` and `LEVER_GET_REQUISITION` it accepts a comma-separated string. Follow the exact schema for each tool.\n- **Requisition updates are full replacements:** `LEVER_UPDATE_REQUISITION` requires all mandatory fields (`requisitionCode`, `name`, `headcountTotal`) even if you only want to change one field. Always fetch the current requisition first with `LEVER_GET_REQUISITION`.\n- **Timestamps:** Opportunity date filters use ISO 8601 format, while `LEVER_LIST_POSTINGS` uses Unix timestamps in milliseconds for `updated_at_start`.\n- **Connection scopes:** Write operations (update\u002Fdelete requisitions) will fail if your API token lacks the necessary permissions, even if reads succeed.\n\n---\n\n## Quick Reference\n\n| Tool Slug | Description |\n|---|---|\n| `LEVER_LIST_POSTINGS` | List all job postings with filtering by state, team, department |\n| `LEVER_LIST_OPPORTUNITIES` | List candidate opportunities with pipeline filtering |\n| `LEVER_GET_OPPORTUNITY` | Get detailed info for a single opportunity |\n| `LEVER_GET_REQUISITION` | Retrieve a single requisition by ID |\n| `LEVER_LIST_REQUISITIONS` | List all requisitions with status\u002Fcode filtering |\n| `LEVER_UPDATE_REQUISITION` | Update an existing requisition (full replacement) |\n| `LEVER_DELETE_REQUISITION` | Delete\u002Farchive a requisition |\n| `LEVER_LIST_STAGES` | List all pipeline stages |\n| `LEVER_LIST_TAGS` | List all tags for categorization |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":52,"body":55},{"name":5,"description":7,"requires":53},{"mcp":54},[42],{"type":56,"children":57},"root",[58,65,79,98,102,109,142,145,151,158,163,178,183,301,312,315,321,326,340,344,495,504,507,513,518,532,536,577,586,589,595,600,636,641,760,769,772,778,783,797,801,824,833,836,842,847,861,865,888,897,900,906,1052,1055,1061,1233,1236],{"type":59,"tag":60,"props":61,"children":62},"element","h1",{"id":4},[63],{"type":64,"value":5},"text",{"type":59,"tag":66,"props":67,"children":68},"p",{},[69,71,77],{"type":64,"value":70},"Automate your recruiting operations in ",{"type":59,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":64,"value":76},"Lever ATS",{"type":64,"value":78}," directly from Claude Code. Manage job postings, track candidate pipelines, update requisitions, and query opportunities without leaving your terminal.",{"type":59,"tag":66,"props":80,"children":81},{},[82,87,89],{"type":59,"tag":72,"props":83,"children":84},{},[85],{"type":64,"value":86},"Toolkit docs:",{"type":64,"value":88}," ",{"type":59,"tag":90,"props":91,"children":95},"a",{"href":92,"rel":93},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Flever",[94],"nofollow",[96],{"type":64,"value":97},"composio.dev\u002Ftoolkits\u002Flever",{"type":59,"tag":99,"props":100,"children":101},"hr",{},[],{"type":59,"tag":103,"props":104,"children":106},"h2",{"id":105},"setup",[107],{"type":64,"value":108},"Setup",{"type":59,"tag":110,"props":111,"children":112},"ol",{},[113,132,137],{"type":59,"tag":114,"props":115,"children":116},"li",{},[117,119],{"type":64,"value":118},"Add the Composio MCP server to your configuration:\n",{"type":59,"tag":120,"props":121,"children":125},"pre",{"className":122,"code":124,"language":64},[123],"language-text","https:\u002F\u002Frube.app\u002Fmcp\n",[126],{"type":59,"tag":127,"props":128,"children":130},"code",{"__ignoreMap":129},"",[131],{"type":64,"value":124},{"type":59,"tag":114,"props":133,"children":134},{},[135],{"type":64,"value":136},"Connect your Lever account when prompted by running any Lever command. The agent will provide an OAuth link to authenticate.",{"type":59,"tag":114,"props":138,"children":139},{},[140],{"type":64,"value":141},"Ensure your Lever API key has sufficient scopes for the operations you need (read\u002Fwrite access to postings, opportunities, requisitions).",{"type":59,"tag":99,"props":143,"children":144},{},[],{"type":59,"tag":103,"props":146,"children":148},{"id":147},"core-workflows",[149],{"type":64,"value":150},"Core Workflows",{"type":59,"tag":152,"props":153,"children":155},"h3",{"id":154},"_1-list-and-filter-job-postings",[156],{"type":64,"value":157},"1. List and Filter Job Postings",{"type":59,"tag":66,"props":159,"children":160},{},[161],{"type":64,"value":162},"Retrieve all job postings with optional filtering by state, team, department, location, or commitment type.",{"type":59,"tag":66,"props":164,"children":165},{},[166,171,172],{"type":59,"tag":72,"props":167,"children":168},{},[169],{"type":64,"value":170},"Tool:",{"type":64,"value":88},{"type":59,"tag":127,"props":173,"children":175},{"className":174},[],[176],{"type":64,"value":177},"LEVER_LIST_POSTINGS",{"type":59,"tag":66,"props":179,"children":180},{},[181],{"type":64,"value":182},"Key parameters:",{"type":59,"tag":184,"props":185,"children":186},"ul",{},[187,240,272,291],{"type":59,"tag":114,"props":188,"children":189},{},[190,196,198,204,206,212,213,219,220,226,227,233,234],{"type":59,"tag":127,"props":191,"children":193},{"className":192},[],[194],{"type":64,"value":195},"state",{"type":64,"value":197}," -- filter by ",{"type":59,"tag":127,"props":199,"children":201},{"className":200},[],[202],{"type":64,"value":203},"published",{"type":64,"value":205},", ",{"type":59,"tag":127,"props":207,"children":209},{"className":208},[],[210],{"type":64,"value":211},"internal",{"type":64,"value":205},{"type":59,"tag":127,"props":214,"children":216},{"className":215},[],[217],{"type":64,"value":218},"closed",{"type":64,"value":205},{"type":59,"tag":127,"props":221,"children":223},{"className":222},[],[224],{"type":64,"value":225},"draft",{"type":64,"value":205},{"type":59,"tag":127,"props":228,"children":230},{"className":229},[],[231],{"type":64,"value":232},"pending",{"type":64,"value":205},{"type":59,"tag":127,"props":235,"children":237},{"className":236},[],[238],{"type":64,"value":239},"rejected",{"type":59,"tag":114,"props":241,"children":242},{},[243,249,250,256,257,263,264,270],{"type":59,"tag":127,"props":244,"children":246},{"className":245},[],[247],{"type":64,"value":248},"team",{"type":64,"value":205},{"type":59,"tag":127,"props":251,"children":253},{"className":252},[],[254],{"type":64,"value":255},"department",{"type":64,"value":205},{"type":59,"tag":127,"props":258,"children":260},{"className":259},[],[261],{"type":64,"value":262},"location",{"type":64,"value":205},{"type":59,"tag":127,"props":265,"children":267},{"className":266},[],[268],{"type":64,"value":269},"commitment",{"type":64,"value":271}," -- narrow results by organizational attributes",{"type":59,"tag":114,"props":273,"children":274},{},[275,281,283,289],{"type":59,"tag":127,"props":276,"children":278},{"className":277},[],[279],{"type":64,"value":280},"limit",{"type":64,"value":282}," (1-100) and ",{"type":59,"tag":127,"props":284,"children":286},{"className":285},[],[287],{"type":64,"value":288},"offset",{"type":64,"value":290}," -- paginate through large posting sets",{"type":59,"tag":114,"props":292,"children":293},{},[294,299],{"type":59,"tag":127,"props":295,"children":297},{"className":296},[],[298],{"type":64,"value":15},{"type":64,"value":300}," -- filter by posting tag",{"type":59,"tag":66,"props":302,"children":303},{},[304,306],{"type":64,"value":305},"Example prompt: ",{"type":59,"tag":307,"props":308,"children":309},"em",{},[310],{"type":64,"value":311},"\"List all published engineering job postings in Lever\"",{"type":59,"tag":99,"props":313,"children":314},{},[],{"type":59,"tag":152,"props":316,"children":318},{"id":317},"_2-browse-candidate-opportunities",[319],{"type":64,"value":320},"2. Browse Candidate Opportunities",{"type":59,"tag":66,"props":322,"children":323},{},[324],{"type":64,"value":325},"List all opportunities in the hiring pipeline with rich filtering for pipeline analysis and candidate tracking.",{"type":59,"tag":66,"props":327,"children":328},{},[329,333,334],{"type":59,"tag":72,"props":330,"children":331},{},[332],{"type":64,"value":170},{"type":64,"value":88},{"type":59,"tag":127,"props":335,"children":337},{"className":336},[],[338],{"type":64,"value":339},"LEVER_LIST_OPPORTUNITIES",{"type":59,"tag":66,"props":341,"children":342},{},[343],{"type":64,"value":182},{"type":59,"tag":184,"props":345,"children":346},{},[347,371,389,416,434],{"type":59,"tag":114,"props":348,"children":349},{},[350,356,357,363,364,369],{"type":59,"tag":127,"props":351,"children":353},{"className":352},[],[354],{"type":64,"value":355},"posting_id",{"type":64,"value":205},{"type":59,"tag":127,"props":358,"children":360},{"className":359},[],[361],{"type":64,"value":362},"stage_id",{"type":64,"value":205},{"type":59,"tag":127,"props":365,"children":367},{"className":366},[],[368],{"type":64,"value":15},{"type":64,"value":370}," -- filter by posting, pipeline stage, or tag",{"type":59,"tag":114,"props":372,"children":373},{},[374,380,381,387],{"type":59,"tag":127,"props":375,"children":377},{"className":376},[],[378],{"type":64,"value":379},"email",{"type":64,"value":205},{"type":59,"tag":127,"props":382,"children":384},{"className":383},[],[385],{"type":64,"value":386},"contact_id",{"type":64,"value":388}," -- find opportunities for a specific candidate",{"type":59,"tag":114,"props":390,"children":391},{},[392,398,400,406,408,414],{"type":59,"tag":127,"props":393,"children":395},{"className":394},[],[396],{"type":64,"value":397},"archived",{"type":64,"value":399}," -- filter by archived status (",{"type":59,"tag":127,"props":401,"children":403},{"className":402},[],[404],{"type":64,"value":405},"true",{"type":64,"value":407},"\u002F",{"type":59,"tag":127,"props":409,"children":411},{"className":410},[],[412],{"type":64,"value":413},"false",{"type":64,"value":415},")",{"type":59,"tag":114,"props":417,"children":418},{},[419,425,426,432],{"type":59,"tag":127,"props":420,"children":422},{"className":421},[],[423],{"type":64,"value":424},"created_at_start",{"type":64,"value":205},{"type":59,"tag":127,"props":427,"children":429},{"className":428},[],[430],{"type":64,"value":431},"created_at_end",{"type":64,"value":433}," -- date range filtering (ISO 8601)",{"type":59,"tag":114,"props":435,"children":436},{},[437,443,445,451,452,458,459,465,466,472,473,479,480,486,487,493],{"type":59,"tag":127,"props":438,"children":440},{"className":439},[],[441],{"type":64,"value":442},"expand",{"type":64,"value":444}," -- expand ",{"type":59,"tag":127,"props":446,"children":448},{"className":447},[],[449],{"type":64,"value":450},"applications",{"type":64,"value":205},{"type":59,"tag":127,"props":453,"children":455},{"className":454},[],[456],{"type":64,"value":457},"contact",{"type":64,"value":205},{"type":59,"tag":127,"props":460,"children":462},{"className":461},[],[463],{"type":64,"value":464},"owner",{"type":64,"value":205},{"type":59,"tag":127,"props":467,"children":469},{"className":468},[],[470],{"type":64,"value":471},"stage",{"type":64,"value":205},{"type":59,"tag":127,"props":474,"children":476},{"className":475},[],[477],{"type":64,"value":478},"stageChanges",{"type":64,"value":205},{"type":59,"tag":127,"props":481,"children":483},{"className":482},[],[484],{"type":64,"value":485},"sources",{"type":64,"value":205},{"type":59,"tag":127,"props":488,"children":490},{"className":489},[],[491],{"type":64,"value":492},"sourcedBy",{"type":64,"value":494}," into full objects",{"type":59,"tag":66,"props":496,"children":497},{},[498,499],{"type":64,"value":305},{"type":59,"tag":307,"props":500,"children":501},{},[502],{"type":64,"value":503},"\"Show me all active opportunities for the Senior Engineer posting, expanded with contact details\"",{"type":59,"tag":99,"props":505,"children":506},{},[],{"type":59,"tag":152,"props":508,"children":510},{"id":509},"_3-get-opportunity-details",[511],{"type":64,"value":512},"3. Get Opportunity Details",{"type":59,"tag":66,"props":514,"children":515},{},[516],{"type":64,"value":517},"Fetch comprehensive details about a single candidate opportunity including contact info, stage progression, sources, and applications.",{"type":59,"tag":66,"props":519,"children":520},{},[521,525,526],{"type":59,"tag":72,"props":522,"children":523},{},[524],{"type":64,"value":170},{"type":64,"value":88},{"type":59,"tag":127,"props":527,"children":529},{"className":528},[],[530],{"type":64,"value":531},"LEVER_GET_OPPORTUNITY",{"type":59,"tag":66,"props":533,"children":534},{},[535],{"type":64,"value":182},{"type":59,"tag":184,"props":537,"children":538},{},[539,550],{"type":59,"tag":114,"props":540,"children":541},{},[542,548],{"type":59,"tag":127,"props":543,"children":545},{"className":544},[],[546],{"type":64,"value":547},"opportunity",{"type":64,"value":549}," (required) -- the unique opportunity UID",{"type":59,"tag":114,"props":551,"children":552},{},[553,558,560,565,566,571,572],{"type":59,"tag":127,"props":554,"children":556},{"className":555},[],[557],{"type":64,"value":442},{"type":64,"value":559}," -- comma-separated fields to expand: ",{"type":59,"tag":127,"props":561,"children":563},{"className":562},[],[564],{"type":64,"value":457},{"type":64,"value":205},{"type":59,"tag":127,"props":567,"children":569},{"className":568},[],[570],{"type":64,"value":471},{"type":64,"value":205},{"type":59,"tag":127,"props":573,"children":575},{"className":574},[],[576],{"type":64,"value":464},{"type":59,"tag":66,"props":578,"children":579},{},[580,581],{"type":64,"value":305},{"type":59,"tag":307,"props":582,"children":583},{},[584],{"type":64,"value":585},"\"Get full details for opportunity 31c9716c-d4e3-47e8-a6a1-54078a1151d6 with contact and stage expanded\"",{"type":59,"tag":99,"props":587,"children":588},{},[],{"type":59,"tag":152,"props":590,"children":592},{"id":591},"_4-manage-requisitions",[593],{"type":64,"value":594},"4. Manage Requisitions",{"type":59,"tag":66,"props":596,"children":597},{},[598],{"type":64,"value":599},"Create, list, update, and delete requisitions to track headcount and hiring needs.",{"type":59,"tag":66,"props":601,"children":602},{},[603,608,609,615,616,622,623,629,630],{"type":59,"tag":72,"props":604,"children":605},{},[606],{"type":64,"value":607},"Tools:",{"type":64,"value":88},{"type":59,"tag":127,"props":610,"children":612},{"className":611},[],[613],{"type":64,"value":614},"LEVER_LIST_REQUISITIONS",{"type":64,"value":205},{"type":59,"tag":127,"props":617,"children":619},{"className":618},[],[620],{"type":64,"value":621},"LEVER_GET_REQUISITION",{"type":64,"value":205},{"type":59,"tag":127,"props":624,"children":626},{"className":625},[],[627],{"type":64,"value":628},"LEVER_UPDATE_REQUISITION",{"type":64,"value":205},{"type":59,"tag":127,"props":631,"children":633},{"className":632},[],[634],{"type":64,"value":635},"LEVER_DELETE_REQUISITION",{"type":59,"tag":66,"props":637,"children":638},{},[639],{"type":64,"value":640},"Update requires these fields:",{"type":59,"tag":184,"props":642,"children":643},{},[644,655,672,683,694,718],{"type":59,"tag":114,"props":645,"children":646},{},[647,653],{"type":59,"tag":127,"props":648,"children":650},{"className":649},[],[651],{"type":64,"value":652},"requisition",{"type":64,"value":654}," (required) -- UUID of the requisition",{"type":59,"tag":114,"props":656,"children":657},{},[658,664,666],{"type":59,"tag":127,"props":659,"children":661},{"className":660},[],[662],{"type":64,"value":663},"requisitionCode",{"type":64,"value":665}," (required) -- unique code like ",{"type":59,"tag":127,"props":667,"children":669},{"className":668},[],[670],{"type":64,"value":671},"REQ-001",{"type":59,"tag":114,"props":673,"children":674},{},[675,681],{"type":59,"tag":127,"props":676,"children":678},{"className":677},[],[679],{"type":64,"value":680},"name",{"type":64,"value":682}," (required) -- requisition title",{"type":59,"tag":114,"props":684,"children":685},{},[686,692],{"type":59,"tag":127,"props":687,"children":689},{"className":688},[],[690],{"type":64,"value":691},"headcountTotal",{"type":64,"value":693}," (required) -- number of positions (minimum 1)",{"type":59,"tag":114,"props":695,"children":696},{},[697,703,705,711,713],{"type":59,"tag":127,"props":698,"children":700},{"className":699},[],[701],{"type":64,"value":702},"status",{"type":64,"value":704}," -- ",{"type":59,"tag":127,"props":706,"children":708},{"className":707},[],[709],{"type":64,"value":710},"open",{"type":64,"value":712}," or ",{"type":59,"tag":127,"props":714,"children":716},{"className":715},[],[717],{"type":64,"value":218},{"type":59,"tag":114,"props":719,"children":720},{},[721,723,729,730,735,736,741,742,747,748,753,754],{"type":64,"value":722},"Optional: ",{"type":59,"tag":127,"props":724,"children":726},{"className":725},[],[727],{"type":64,"value":728},"hiringManager",{"type":64,"value":205},{"type":59,"tag":127,"props":731,"children":733},{"className":732},[],[734],{"type":64,"value":464},{"type":64,"value":205},{"type":59,"tag":127,"props":737,"children":739},{"className":738},[],[740],{"type":64,"value":255},{"type":64,"value":205},{"type":59,"tag":127,"props":743,"children":745},{"className":744},[],[746],{"type":64,"value":248},{"type":64,"value":205},{"type":59,"tag":127,"props":749,"children":751},{"className":750},[],[752],{"type":64,"value":262},{"type":64,"value":205},{"type":59,"tag":127,"props":755,"children":757},{"className":756},[],[758],{"type":64,"value":759},"compensationBand",{"type":59,"tag":66,"props":761,"children":762},{},[763,764],{"type":64,"value":305},{"type":59,"tag":307,"props":765,"children":766},{},[767],{"type":64,"value":768},"\"Update requisition REQ-001 to increase headcount to 3 and change status to open\"",{"type":59,"tag":99,"props":770,"children":771},{},[],{"type":59,"tag":152,"props":773,"children":775},{"id":774},"_5-view-pipeline-stages",[776],{"type":64,"value":777},"5. View Pipeline Stages",{"type":59,"tag":66,"props":779,"children":780},{},[781],{"type":64,"value":782},"Retrieve all hiring pipeline stages configured in your Lever account.",{"type":59,"tag":66,"props":784,"children":785},{},[786,790,791],{"type":59,"tag":72,"props":787,"children":788},{},[789],{"type":64,"value":170},{"type":64,"value":88},{"type":59,"tag":127,"props":792,"children":794},{"className":793},[],[795],{"type":64,"value":796},"LEVER_LIST_STAGES",{"type":59,"tag":66,"props":798,"children":799},{},[800],{"type":64,"value":182},{"type":59,"tag":184,"props":802,"children":803},{},[804,814],{"type":59,"tag":114,"props":805,"children":806},{},[807,812],{"type":59,"tag":127,"props":808,"children":810},{"className":809},[],[811],{"type":64,"value":280},{"type":64,"value":813}," (1-100) -- max items per page",{"type":59,"tag":114,"props":815,"children":816},{},[817,822],{"type":59,"tag":127,"props":818,"children":820},{"className":819},[],[821],{"type":64,"value":288},{"type":64,"value":823}," -- pagination token from previous response",{"type":59,"tag":66,"props":825,"children":826},{},[827,828],{"type":64,"value":305},{"type":59,"tag":307,"props":829,"children":830},{},[831],{"type":64,"value":832},"\"List all pipeline stages in our Lever account\"",{"type":59,"tag":99,"props":834,"children":835},{},[],{"type":59,"tag":152,"props":837,"children":839},{"id":838},"_6-manage-tags",[840],{"type":64,"value":841},"6. Manage Tags",{"type":59,"tag":66,"props":843,"children":844},{},[845],{"type":64,"value":846},"List all tags used to categorize candidates, opportunities, and postings.",{"type":59,"tag":66,"props":848,"children":849},{},[850,854,855],{"type":59,"tag":72,"props":851,"children":852},{},[853],{"type":64,"value":170},{"type":64,"value":88},{"type":59,"tag":127,"props":856,"children":858},{"className":857},[],[859],{"type":64,"value":860},"LEVER_LIST_TAGS",{"type":59,"tag":66,"props":862,"children":863},{},[864],{"type":64,"value":182},{"type":59,"tag":184,"props":866,"children":867},{},[868,878],{"type":59,"tag":114,"props":869,"children":870},{},[871,876],{"type":59,"tag":127,"props":872,"children":874},{"className":873},[],[875],{"type":64,"value":280},{"type":64,"value":877}," -- max items per page",{"type":59,"tag":114,"props":879,"children":880},{},[881,886],{"type":59,"tag":127,"props":882,"children":884},{"className":883},[],[885],{"type":64,"value":288},{"type":64,"value":887}," -- pagination token",{"type":59,"tag":66,"props":889,"children":890},{},[891,892],{"type":64,"value":305},{"type":59,"tag":307,"props":893,"children":894},{},[895],{"type":64,"value":896},"\"Show all candidate tags in Lever\"",{"type":59,"tag":99,"props":898,"children":899},{},[],{"type":59,"tag":103,"props":901,"children":903},{"id":902},"known-pitfalls",[904],{"type":64,"value":905},"Known Pitfalls",{"type":59,"tag":184,"props":907,"children":908},{},[909,939,976,1018,1042],{"type":59,"tag":114,"props":910,"children":911},{},[912,917,918,923,925,930,932,937],{"type":59,"tag":72,"props":913,"children":914},{},[915],{"type":64,"value":916},"Pagination required for large datasets:",{"type":64,"value":88},{"type":59,"tag":127,"props":919,"children":921},{"className":920},[],[922],{"type":64,"value":339},{"type":64,"value":924}," and ",{"type":59,"tag":127,"props":926,"children":928},{"className":927},[],[929],{"type":64,"value":177},{"type":64,"value":931}," default to 100 results max per page. Always check for an ",{"type":59,"tag":127,"props":933,"children":935},{"className":934},[],[936],{"type":64,"value":288},{"type":64,"value":938}," token in the response and iterate to get complete results.",{"type":59,"tag":114,"props":940,"children":941},{},[942,947,949,954,956,961,963,968,969,974],{"type":59,"tag":72,"props":943,"children":944},{},[945],{"type":64,"value":946},"Expand parameter format:",{"type":64,"value":948}," The ",{"type":59,"tag":127,"props":950,"children":952},{"className":951},[],[953],{"type":64,"value":442},{"type":64,"value":955}," field on ",{"type":59,"tag":127,"props":957,"children":959},{"className":958},[],[960],{"type":64,"value":339},{"type":64,"value":962}," accepts an array of strings, while on ",{"type":59,"tag":127,"props":964,"children":966},{"className":965},[],[967],{"type":64,"value":531},{"type":64,"value":924},{"type":59,"tag":127,"props":970,"children":972},{"className":971},[],[973],{"type":64,"value":621},{"type":64,"value":975}," it accepts a comma-separated string. Follow the exact schema for each tool.",{"type":59,"tag":114,"props":977,"children":978},{},[979,984,985,990,992,997,998,1003,1004,1009,1011,1016],{"type":59,"tag":72,"props":980,"children":981},{},[982],{"type":64,"value":983},"Requisition updates are full replacements:",{"type":64,"value":88},{"type":59,"tag":127,"props":986,"children":988},{"className":987},[],[989],{"type":64,"value":628},{"type":64,"value":991}," requires all mandatory fields (",{"type":59,"tag":127,"props":993,"children":995},{"className":994},[],[996],{"type":64,"value":663},{"type":64,"value":205},{"type":59,"tag":127,"props":999,"children":1001},{"className":1000},[],[1002],{"type":64,"value":680},{"type":64,"value":205},{"type":59,"tag":127,"props":1005,"children":1007},{"className":1006},[],[1008],{"type":64,"value":691},{"type":64,"value":1010},") even if you only want to change one field. Always fetch the current requisition first with ",{"type":59,"tag":127,"props":1012,"children":1014},{"className":1013},[],[1015],{"type":64,"value":621},{"type":64,"value":1017},".",{"type":59,"tag":114,"props":1019,"children":1020},{},[1021,1026,1028,1033,1035,1041],{"type":59,"tag":72,"props":1022,"children":1023},{},[1024],{"type":64,"value":1025},"Timestamps:",{"type":64,"value":1027}," Opportunity date filters use ISO 8601 format, while ",{"type":59,"tag":127,"props":1029,"children":1031},{"className":1030},[],[1032],{"type":64,"value":177},{"type":64,"value":1034}," uses Unix timestamps in milliseconds for ",{"type":59,"tag":127,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":64,"value":1040},"updated_at_start",{"type":64,"value":1017},{"type":59,"tag":114,"props":1043,"children":1044},{},[1045,1050],{"type":59,"tag":72,"props":1046,"children":1047},{},[1048],{"type":64,"value":1049},"Connection scopes:",{"type":64,"value":1051}," Write operations (update\u002Fdelete requisitions) will fail if your API token lacks the necessary permissions, even if reads succeed.",{"type":59,"tag":99,"props":1053,"children":1054},{},[],{"type":59,"tag":103,"props":1056,"children":1058},{"id":1057},"quick-reference",[1059],{"type":64,"value":1060},"Quick Reference",{"type":59,"tag":1062,"props":1063,"children":1064},"table",{},[1065,1084],{"type":59,"tag":1066,"props":1067,"children":1068},"thead",{},[1069],{"type":59,"tag":1070,"props":1071,"children":1072},"tr",{},[1073,1079],{"type":59,"tag":1074,"props":1075,"children":1076},"th",{},[1077],{"type":64,"value":1078},"Tool Slug",{"type":59,"tag":1074,"props":1080,"children":1081},{},[1082],{"type":64,"value":1083},"Description",{"type":59,"tag":1085,"props":1086,"children":1087},"tbody",{},[1088,1105,1121,1137,1153,1169,1185,1201,1217],{"type":59,"tag":1070,"props":1089,"children":1090},{},[1091,1100],{"type":59,"tag":1092,"props":1093,"children":1094},"td",{},[1095],{"type":59,"tag":127,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":64,"value":177},{"type":59,"tag":1092,"props":1101,"children":1102},{},[1103],{"type":64,"value":1104},"List all job postings with filtering by state, team, department",{"type":59,"tag":1070,"props":1106,"children":1107},{},[1108,1116],{"type":59,"tag":1092,"props":1109,"children":1110},{},[1111],{"type":59,"tag":127,"props":1112,"children":1114},{"className":1113},[],[1115],{"type":64,"value":339},{"type":59,"tag":1092,"props":1117,"children":1118},{},[1119],{"type":64,"value":1120},"List candidate opportunities with pipeline filtering",{"type":59,"tag":1070,"props":1122,"children":1123},{},[1124,1132],{"type":59,"tag":1092,"props":1125,"children":1126},{},[1127],{"type":59,"tag":127,"props":1128,"children":1130},{"className":1129},[],[1131],{"type":64,"value":531},{"type":59,"tag":1092,"props":1133,"children":1134},{},[1135],{"type":64,"value":1136},"Get detailed info for a single opportunity",{"type":59,"tag":1070,"props":1138,"children":1139},{},[1140,1148],{"type":59,"tag":1092,"props":1141,"children":1142},{},[1143],{"type":59,"tag":127,"props":1144,"children":1146},{"className":1145},[],[1147],{"type":64,"value":621},{"type":59,"tag":1092,"props":1149,"children":1150},{},[1151],{"type":64,"value":1152},"Retrieve a single requisition by ID",{"type":59,"tag":1070,"props":1154,"children":1155},{},[1156,1164],{"type":59,"tag":1092,"props":1157,"children":1158},{},[1159],{"type":59,"tag":127,"props":1160,"children":1162},{"className":1161},[],[1163],{"type":64,"value":614},{"type":59,"tag":1092,"props":1165,"children":1166},{},[1167],{"type":64,"value":1168},"List all requisitions with status\u002Fcode filtering",{"type":59,"tag":1070,"props":1170,"children":1171},{},[1172,1180],{"type":59,"tag":1092,"props":1173,"children":1174},{},[1175],{"type":59,"tag":127,"props":1176,"children":1178},{"className":1177},[],[1179],{"type":64,"value":628},{"type":59,"tag":1092,"props":1181,"children":1182},{},[1183],{"type":64,"value":1184},"Update an existing requisition (full replacement)",{"type":59,"tag":1070,"props":1186,"children":1187},{},[1188,1196],{"type":59,"tag":1092,"props":1189,"children":1190},{},[1191],{"type":59,"tag":127,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":64,"value":635},{"type":59,"tag":1092,"props":1197,"children":1198},{},[1199],{"type":64,"value":1200},"Delete\u002Farchive a requisition",{"type":59,"tag":1070,"props":1202,"children":1203},{},[1204,1212],{"type":59,"tag":1092,"props":1205,"children":1206},{},[1207],{"type":59,"tag":127,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":64,"value":796},{"type":59,"tag":1092,"props":1213,"children":1214},{},[1215],{"type":64,"value":1216},"List all pipeline stages",{"type":59,"tag":1070,"props":1218,"children":1219},{},[1220,1228],{"type":59,"tag":1092,"props":1221,"children":1222},{},[1223],{"type":59,"tag":127,"props":1224,"children":1226},{"className":1225},[],[1227],{"type":64,"value":860},{"type":59,"tag":1092,"props":1229,"children":1230},{},[1231],{"type":64,"value":1232},"List all tags for categorization",{"type":59,"tag":99,"props":1234,"children":1235},{},[],{"type":59,"tag":66,"props":1237,"children":1238},{},[1239],{"type":59,"tag":307,"props":1240,"children":1241},{},[1242,1244],{"type":64,"value":1243},"Powered by ",{"type":59,"tag":90,"props":1245,"children":1248},{"href":1246,"rel":1247},"https:\u002F\u002Fcomposio.dev",[94],[1249],{"type":64,"value":10},{"items":1251,"total":1336},[1252,1267,1283,1292,1302,1314,1323],{"slug":1253,"name":1254,"fn":1255,"description":1256,"org":1257,"tags":1258,"stars":25,"repoUrl":26,"updatedAt":1266},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1259,1260,1261,1263],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1262,"slug":40,"type":15},"MCP",{"name":1264,"slug":1265,"type":15},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1268,"name":1269,"fn":1270,"description":1271,"org":1272,"tags":1273,"stars":25,"repoUrl":26,"updatedAt":1282},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1274,1275,1278,1279],{"name":20,"slug":21,"type":15},{"name":1276,"slug":1277,"type":15},"Communications","communications",{"name":1262,"slug":40,"type":15},{"name":1280,"slug":1281,"type":15},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1284,"name":1284,"fn":1285,"description":1286,"org":1287,"tags":1288,"stars":25,"repoUrl":26,"updatedAt":1291},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1289,1290],{"name":20,"slug":21,"type":15},{"name":1262,"slug":40,"type":15},"2026-07-12T08:09:55.453088",{"slug":1293,"name":1293,"fn":1294,"description":1295,"org":1296,"tags":1297,"stars":25,"repoUrl":26,"updatedAt":1301},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1298,1299,1300],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1262,"slug":40,"type":15},"2026-07-15T05:45:16.470309",{"slug":1303,"name":1303,"fn":1304,"description":1305,"org":1306,"tags":1307,"stars":25,"repoUrl":26,"updatedAt":1313},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1308,1309,1310],{"name":20,"slug":21,"type":15},{"name":1262,"slug":40,"type":15},{"name":1311,"slug":1312,"type":15},"Security","security","2026-07-15T05:56:20.013366",{"slug":1315,"name":1315,"fn":1316,"description":1317,"org":1318,"tags":1319,"stars":25,"repoUrl":26,"updatedAt":1322},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1320,1321],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},"2026-07-15T05:54:50.762889",{"slug":1324,"name":1324,"fn":1325,"description":1326,"org":1327,"tags":1328,"stars":25,"repoUrl":26,"updatedAt":1335},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1329,1330,1331,1334],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1332,"slug":1333,"type":15},"CRM","crm",{"name":1262,"slug":40,"type":15},"2026-07-15T05:48:43.429136",860,{"items":1338,"total":1442},[1339,1346,1353,1358,1364,1370,1375,1382,1396,1409,1422,1432],{"slug":1253,"name":1254,"fn":1255,"description":1256,"org":1340,"tags":1341,"stars":25,"repoUrl":26,"updatedAt":1266},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1342,1343,1344,1345],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1262,"slug":40,"type":15},{"name":1264,"slug":1265,"type":15},{"slug":1268,"name":1269,"fn":1270,"description":1271,"org":1347,"tags":1348,"stars":25,"repoUrl":26,"updatedAt":1282},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1349,1350,1351,1352],{"name":20,"slug":21,"type":15},{"name":1276,"slug":1277,"type":15},{"name":1262,"slug":40,"type":15},{"name":1280,"slug":1281,"type":15},{"slug":1284,"name":1284,"fn":1285,"description":1286,"org":1354,"tags":1355,"stars":25,"repoUrl":26,"updatedAt":1291},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1356,1357],{"name":20,"slug":21,"type":15},{"name":1262,"slug":40,"type":15},{"slug":1293,"name":1293,"fn":1294,"description":1295,"org":1359,"tags":1360,"stars":25,"repoUrl":26,"updatedAt":1301},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1361,1362,1363],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1262,"slug":40,"type":15},{"slug":1303,"name":1303,"fn":1304,"description":1305,"org":1365,"tags":1366,"stars":25,"repoUrl":26,"updatedAt":1313},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1367,1368,1369],{"name":20,"slug":21,"type":15},{"name":1262,"slug":40,"type":15},{"name":1311,"slug":1312,"type":15},{"slug":1315,"name":1315,"fn":1316,"description":1317,"org":1371,"tags":1372,"stars":25,"repoUrl":26,"updatedAt":1322},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1373,1374],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"slug":1324,"name":1324,"fn":1325,"description":1326,"org":1376,"tags":1377,"stars":25,"repoUrl":26,"updatedAt":1335},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1378,1379,1380,1381],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1332,"slug":1333,"type":15},{"name":1262,"slug":40,"type":15},{"slug":1383,"name":1383,"fn":1384,"description":1385,"org":1386,"tags":1387,"stars":25,"repoUrl":26,"updatedAt":1395},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1388,1389,1392],{"name":20,"slug":21,"type":15},{"name":1390,"slug":1391,"type":15},"Documents","documents",{"name":1393,"slug":1394,"type":15},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1397,"name":1397,"fn":1398,"description":1399,"org":1400,"tags":1401,"stars":25,"repoUrl":26,"updatedAt":1408},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1402,1403,1404,1405],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1262,"slug":40,"type":15},{"name":1406,"slug":1407,"type":15},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1410,"name":1410,"fn":1411,"description":1412,"org":1413,"tags":1414,"stars":25,"repoUrl":26,"updatedAt":1421},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1415,1416,1417,1418],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1332,"slug":1333,"type":15},{"name":1419,"slug":1420,"type":15},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1423,"name":1423,"fn":1424,"description":1425,"org":1426,"tags":1427,"stars":25,"repoUrl":26,"updatedAt":1431},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1428,1429,1430],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1262,"slug":40,"type":15},"2026-07-15T05:47:51.742515",{"slug":1433,"name":1433,"fn":1434,"description":1435,"org":1436,"tags":1437,"stars":25,"repoUrl":26,"updatedAt":1441},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1438,1439,1440],{"name":20,"slug":21,"type":15},{"name":10,"slug":9,"type":15},{"name":1262,"slug":40,"type":15},"2026-07-15T05:45:05.303254",863]