Lever MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Lever MCP or direct API to source candidates, update job postings, manage interviews, and send candidate emails through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Lever Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Lever now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Add Opportunity LinksTool to add links to a contact associated with an opportunity.
Add Opportunity SourcesTool to add sources to an opportunity.
Add Opportunity TagsTool to add tags to an opportunity.
Create Form SubmissionTool to create a completed profile form submission for a candidate's opportunity profile.
Create Form TemplateTool to create a profile form template for an account.
Create InterviewTool to create an interview on an externally-managed panel in Lever.
Create NoteTool to create a note on an opportunity profile or add a threaded comment to an existing note.
Create OpportunityTool to create a new candidate opportunity in Lever.
Create PanelTool to create a new interview panel for an opportunity.
Create RequisitionTool to create a new requisition in Lever for tracking hiring needs.
Create Requisition FieldTool to create a custom requisition field schema for use across requisitions.
Create Requisition Field OptionTool to add new options to a dropdown requisition field without replacing existing options.
Upload FileTool to upload a file temporarily to Lever for use with posting applications.
Create UserTool to create a new user in the Lever system.
Deactivate UserTool to deactivate a user in the Lever system.
Delete Form TemplateTool to delete a profile form template from account.
Delete InterviewTool to delete an interview from an opportunity panel.
Delete NoteTool to delete a note on an opportunity.
Delete PanelTool to delete a panel from an opportunity.
Delete RequisitionTool to delete or archive a requisition from Lever account.
Delete Requisition FieldTool to delete a requisition field from the account.
Delete Requisition Field OptionTool to remove specific options from a dropdown requisition field.
Download FileTool to download a file associated with an opportunity.
Get File MetadataTool to retrieve metadata for a single file on an opportunity.
Get FormTool to retrieve a specific profile form for an opportunity.
Get Form TemplateTool to retrieve a single form template by unique identifier.
Get InterviewTool to retrieve a single interview for an opportunity.
Get NoteTool to retrieve a single note for an opportunity.
Get OpportunityTool to retrieve detailed information about a single opportunity.
Get PanelTool to retrieve a single interview panel for an opportunity.
Get RequisitionTool to retrieve detailed information about a single requisition by ID.
Get Requisition FieldTool to retrieve detailed information about a single custom requisition field by ID.
Get StageTool to retrieve detailed information about a single stage by its UUID.
Get UserTool to retrieve detailed information about a single user by their UUID.
List Opportunity FilesTool to list all files on an opportunity.
List FormsTool to list all profile forms for an opportunity.
List Form TemplatesTool to list all active form templates.
List InterviewsTool to list all interviews for an opportunity.
List NotesTool to list notes on an opportunity profile.
List OffersTool to list offers for an opportunity.
List OpportunitiesTool to list all opportunities in the hiring pipeline.
List PanelsTool to list all interview panels for an opportunity.
List PostingsTool to list all job postings including published, internal, closed, draft, pending, and rejected postings.
List ReferralsTool to list all referrals for an opportunity.
List Requisition FieldsTool to list all requisition field schemas in your Lever account with optional filtering.
List RequisitionsTool to list all requisitions with filtering and pagination.
List Opportunity ResumesTool to list all resumes for an opportunity.
List SourcesTool to list all recruitment sources in your Lever account.
List StagesTool to retrieve all pipeline stages in your Lever account.
List TagsTool to list all tags in your Lever account.
List UsersTool to retrieve all active users in your Lever account with optional filters.
Reactivate UserTool to reactivate a previously deactivated user in the Lever system.
Remove Contact Links by OpportunityTool to remove links from a contact associated with an opportunity.
Remove Opportunity SourcesTool to remove sources from an opportunity.
Remove Opportunity TagsTool to remove tags from an opportunity.
Update Form TemplateTool to update an existing profile form template.
Update InterviewTool to update an interview on an externally-managed panel.
Update NoteTool to update a note on an opportunity profile.
Update PanelTool to update an externally-managed panel for an opportunity.
Update RequisitionTool to update an existing requisition in Lever.
Update Requisition FieldTool to update an existing requisition field in Lever.
Update Requisition Field OptionTool to update existing options in a dropdown requisition field without replacing the entire field object.
Update UserTool to update an existing user in the Lever system.
Upload File to OpportunityTool to upload a file permanently to an opportunity.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Lever tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Show all candidates for the Software Engineer position')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Why Use Composio?

AI Native Lever Integration

  • Supports both Lever MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Lever data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Lever access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Lever
  • Scoped, least privilege access to Lever resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Lever with Composio?

Yes, Lever requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.