Automate recruiting workflows in Lever ATS -- manage opportunities, job postings, requisitions, pipeline stages, and candidate tags through the Composio Lever i
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-lever-automation-e6052d4dd2d9 ,按照其中的说明把「Lever Automation」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Automate 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.
Toolkit docs: composio.dev/toolkits/lever
https://rube.app/mcp
Retrieve all job postings with optional filtering by state, team, department, location, or commitment type.
Tool: LEVER_LIST_POSTINGS
Key parameters:
state -- filter by published, internal, closed, draft, pending, rejectedteam, department, location, commitment -- narrow results by organizational attributeslimit (1-100) and offset -- paginate through large posting setstag -- filter by posting tagExample prompt: "List all published engineering job postings in Lever"
List all opportunities in the hiring pipeline with rich filtering for pipeline analysis and candidate tracking.
Tool: LEVER_LIST_OPPORTUNITIES
Key parameters:
posting_id, stage_id, tag -- filter by posting, pipeline stage, or tagemail, contact_id -- find opportunities for a specific candidatearchived -- filter by archived status (true/false)created_at_start, created_at_end -- date range filtering (ISO 8601)expand -- expand applications, contact, owner, stage, stageChanges, sources, sourcedBy into full objectsExample prompt: "Show me all active opportunities for the Senior Engineer posting, expanded with contact details"
Fetch comprehensive details about a single candidate opportunity including contact info, stage progression, sources, and applications.
Tool: LEVER_GET_OPPORTUNITY
Key parameters:
opportunity (required) -- the unique opportunity UIDexpand -- comma-separated fields to expand: contact, stage, ownerExample prompt: "Get full details for opportunity 31c9716c-d4e3-47e8-a6a1-54078a1151d6 with contact and stage expanded"
Create, list, update, and delete requisitions to track headcount and hiring needs.
Tools: LEVER_LIST_REQUISITIONS, LEVER_GET_REQUISITION, LEVER_UPDATE_REQUISITION, LEVER_DELETE_REQUISITION
Update requires these fields:
requisition (required) -- UUID of the requisitionrequisitionCode (required) -- unique code like REQ-001name (required) -- requisition titleheadcountTotal (required) -- number of positions (minimum 1)status -- open or closedhiringManager, owner, department, team, location, compensationBandExample prompt: "Update requisition REQ-001 to increase headcount to 3 and change status to open"
Retrieve all hiring pipeline stages configured in your Lever account.
Tool: LEVER_LIST_STAGES
Key parameters:
limit (1-100) -- max items per pageoffset -- pagination token from previous responseExample prompt: "List all pipeline stages in our Lever account"
List all tags used to categorize candidates, opportunities, and postings.
Tool: LEVER_LIST_TAGS
Key parameters:
limit -- max items per pageoffset -- pagination tokenExample prompt: "Show all candidate tags in Lever"
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.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.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.LEVER_LIST_POSTINGS uses Unix timestamps in milliseconds for updated_at_start.| Tool Slug | Description |
|---|---|
LEVER_LIST_POSTINGS | List all job postings with filtering by state, team, department |
LEVER_LIST_OPPORTUNITIES | List candidate opportunities with pipeline filtering |
LEVER_GET_OPPORTUNITY | Get detailed info for a single opportunity |
LEVER_GET_REQUISITION | Retrieve a single requisition by ID |
LEVER_LIST_REQUISITIONS | List all requisitions with status/code filtering |
LEVER_UPDATE_REQUISITION | Update an existing requisition (full replacement) |
LEVER_DELETE_REQUISITION | Delete/archive a requisition |
LEVER_LIST_STAGES | List all pipeline stages |
LEVER_LIST_TAGS | List all tags for categorization |
Powered by Composio