Lever
FreeNot checkedA Lever ATS MCP (Model Context Protocol) Server. Built in golang.
About
A Lever ATS MCP (Model Context Protocol) Server. Built in golang.
README
lever-mcp
Community-developed MCP server for the Lever ATS API, exposing 59 tools over Streamable HTTP.
[!IMPORTANT] This project is experimental and provided as-is. It is not endorsed by, affiliated with, or supported by Lever or Employ, Inc. "Lever" is a trademark of Employ, Inc. All product names, logos, and brands are property of their respective owners. Use at your own risk.
Quick Start
| Variable | Required | Default | Description |
|---|---|---|---|
LEVER_API_KEY |
Yes | Lever API key | |
PORT |
No | 3000 |
HTTP listen port |
LEVER_BASE_URL |
No | https://api.lever.co/v1 |
Override for sandbox or EU regions |
Build & Run
# build
make build # or: go build -o lever-mcp ./cmd/lever-mcp
# run
export LEVER_API_KEY=your-key
./lever-mcp # listening on :3000
The server exposes two endpoints:
POST /mcp(MCP Streamable HTTP)GET /health(health check)
Tool Filtering
Restrict which tools are registered using comma-separated env vars:
# allowlist: only these tools are registered
LEVER_ENABLED_TOOLS=list_opportunities,get_opportunity
# blocklist: everything except these
LEVER_DISABLED_TOOLS=delete_opportunity_note,delete_webhook
If both are set, LEVER_ENABLED_TOOLS takes precedence.
Available Tools (59)
:eyes: read · :pencil2: create · :arrows_counterclockwise: update · :wastebasket: destructive
Opportunities (4 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_opportunities |
:eyes: | docs |
get_opportunity |
:eyes: | docs |
create_opportunity |
:pencil2: | docs |
list_deleted_opportunities |
:eyes: | docs |
Opportunity Actions (8 tools)
| Tool | Annotation | API Docs |
|---|---|---|
archive_opportunity |
:arrows_counterclockwise: | docs |
change_opportunity_stage |
:arrows_counterclockwise: | docs |
add_opportunity_tags |
:pencil2: | docs |
add_opportunity_sources |
:pencil2: | docs |
add_opportunity_links |
:pencil2: | docs |
remove_opportunity_tags |
:arrows_counterclockwise: | docs |
remove_opportunity_sources |
:arrows_counterclockwise: | docs |
remove_opportunity_links |
:arrows_counterclockwise: | docs |
Notes (3 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_opportunity_notes |
:eyes: | docs |
create_opportunity_note |
:pencil2: | docs |
delete_opportunity_note |
:wastebasket: | docs |
Offers (1 tool)
| Tool | Annotation | API Docs |
|---|---|---|
list_opportunity_offers |
:eyes: | docs |
Interviews (3 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_opportunity_interviews |
:eyes: | docs |
update_opportunity_interview |
:arrows_counterclockwise: | docs |
delete_opportunity_interview |
:wastebasket: | docs |
Feedback (5 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_opportunity_feedback |
:eyes: | docs |
get_opportunity_feedback |
:eyes: | docs |
create_opportunity_feedback |
:pencil2: | docs |
update_opportunity_feedback |
:arrows_counterclockwise: | docs |
delete_opportunity_feedback |
:wastebasket: | docs |
Panels (2 tools)
| Tool | Annotation | API Docs |
|---|---|---|
create_opportunity_panel |
:pencil2: | docs |
delete_opportunity_panel |
:wastebasket: | docs |
Referrals, Resumes, Files (3 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_opportunity_referrals |
:eyes: | docs |
list_opportunity_resumes |
:eyes: | docs |
list_opportunity_files |
:eyes: | docs |
Applications (2 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_opportunity_applications |
:eyes: | docs |
get_opportunity_application |
:eyes: | docs |
Forms (1 tool)
| Tool | Annotation | API Docs |
|---|---|---|
list_opportunity_forms |
:eyes: | docs |
Archive Reasons (2 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_archive_reasons |
:eyes: | docs |
get_archive_reason |
:eyes: | docs |
Contacts (1 tool)
| Tool | Annotation | API Docs |
|---|---|---|
get_contact |
:eyes: | docs |
Postings (6 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_postings |
:eyes: | docs |
get_posting |
:eyes: | docs |
create_posting |
:pencil2: | docs |
update_posting |
:arrows_counterclockwise: | docs |
apply_to_posting |
:pencil2: | docs |
get_posting_apply_questions |
:eyes: | docs |
Users (5 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_users |
:eyes: | docs |
get_user |
:eyes: | docs |
create_user |
:pencil2: | docs |
deactivate_user |
:arrows_counterclockwise: | docs |
reactivate_user |
:arrows_counterclockwise: | docs |
Stages, Sources, Tags (3 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_stages |
:eyes: | docs |
list_sources |
:eyes: | docs |
list_tags |
:eyes: | docs |
Requisitions (2 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_requisitions |
:eyes: | docs |
get_requisition |
:eyes: | docs |
Templates (4 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_feedback_templates |
:eyes: | docs |
create_feedback_template |
:pencil2: | docs |
delete_feedback_template |
:wastebasket: | docs |
list_form_templates |
:eyes: | docs |
Webhooks (3 tools)
| Tool | Annotation | API Docs |
|---|---|---|
list_webhooks |
:eyes: | docs |
create_webhook |
:pencil2: | docs |
delete_webhook |
:wastebasket: | docs |
EEO (1 tool)
| Tool | Annotation | API Docs |
|---|---|---|
list_eeo_responses |
:eyes: | docs |
Audit Events (1 tool)
| Tool | Annotation | API Docs |
|---|---|---|
list_audit_events |
:eyes: | docs |
Client Configuration
Claude Desktop
{
"mcpServers": {
"lever": {
"type": "streamable-http",
"url": "http://localhost:3000/mcp"
}
}
}
Generic MCP Client
Any client that supports Streamable HTTP transport can connect to http://<host>:3000/mcp.
Development
make test # run all tests
make build # compile binary
go test ./internal/tools/ -run TestConformance # annotation & schema conformance
API Reference
License
Copyright (c) 2026 Stefano Amorelli ([email protected])
Installing Lever
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/stefanoamorelli/lever-mcpFAQ
Is Lever MCP free?
Yes, Lever MCP is free — one-click install via Unyly at no cost.
Does Lever need an API key?
No, Lever runs without API keys or environment variables.
Is Lever hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Lever in Claude Desktop, Claude Code or Cursor?
Open Lever on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Lever with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
