
Merge MCP Server
Provides integration between Merge API and LLM providers supporting the MCP protocol, allowing natural language interaction with Merge data across HRIS, ATS, and other categories.
README
Merge MCP Server
This MCP (Model Context Protocol) server provides integration between Merge API and any LLM provider supporting the MCP protocol (e.g., Claude for Desktop), allowing you to interact with your Merge data using natural language.
✨ Features
- Query Merge API entities using natural language
- Get information about your Merge data models and their fields
- Create and update entities through conversational interfaces
- Support for multiple Merge API categories (HRIS, ATS, etc.)
📦 Installation
Prerequisites
- A Merge API key and account token
- Python 3.10 or higher
- uv
Install uv
with standalone installer:
# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
or through pip:
# With pip.
pip install uv
# With pipx.
pipx install uv
🔌 MCP Integration
Add this configuration to your MCP client config file.
In Claude Desktop, you can access the config in Settings → Developer → Edit Config:
{
"mcpServers": {
"merge-mcp-server": {
"command": "uvx",
"args": ["merge-mcp"],
"env": {
"MERGE_API_KEY": "your_api_key",
"MERGE_ACCOUNT_TOKEN": "your_account_token"
}
}
}
}
Note: If "uvx" command does not work, try absolute path (i.e. /Users/username/.local/bin/uvx)
🔍 Scopes
Scopes determine which tool integrations are enabled on the MCP server. The Merge MCP Server uses scopes to control access to different parts of the Merge API. When starting the server, you can specify which scopes to enable:
{
"mcpServers": {
"merge-mcp-server": {
"command": "uvx",
"args": [
"merge-mcp",
"--scopes",
"ats.Job:read",
"ats.Candidate",
"ats.Application:write"
],
"env": {
"MERGE_API_KEY": "your_api_key",
"MERGE_ACCOUNT_TOKEN": "your_account_token"
}
}
}
}
Scope Format
Scopes in the Merge MCP Server follow a specific format based on the Merge API category and common model names. Each scope is formatted as:
<category>.<CommonModel>:<permission>
Where:
<category>
is the Merge API category (e.g.,hris
,ats
,accounting
)<CommonModel>
is the name of the Merge Common Model (e.g.,Employee
,Candidate
,Account
)<permission>
is eitherread
orwrite
(optional - if not specified, all permissions are granted)
Examples of valid scopes:
hris.Employee:read
- Allows reading employee data from HRIS categoryats.Candidate:write
- Allows creating or updating candidate data in ATS categoryaccounting.Account
- Allows all operations on account data in Accounting category
You can combine multiple scopes to grant different permissions:
If no scopes are specified, all available scopes will be enabled. The available scopes depend on your Merge API account configuration and the models the Linked Account has access to.
Important Notes on Scope Availability
Scopes must be cross-referenced with enabled scopes on your Linked Account:
-
Category Mismatch: If you specify a scope for a category that doesn't match your Linked Account (e.g., using
ats.Job
with an HRIS Linked Account), no tools for that scope will be returned. -
Permission Mismatch: If you request a permission that isn't enabled for your Linked Account (e.g., using
hris.Employee:write
when only read access is enabled), tools requiring that permission won't be returned. -
Validation: The server will automatically validate your requested scopes against what's available in your Linked Account and will only enable tools for valid, authorized scopes.
Scopes typically correspond to different models or entity types in the Merge API, and they control both read and write access to these entities.
🚀 Available Tools
The Merge MCP Server provides access to various Merge API endpoints as tools. The available tools depend on your Merge API category (HRIS, ATS, etc.) and the scopes you have enabled.
Tools are dynamically generated based on your Merge API schema and include operations for:
- Retrieving entity details
- Listing entities
- Creating new entities
- Updating existing entities
- And more, based on your specific Merge API configuration
🔑 Environment Variables
The following environment variables are used by the Merge MCP Server:
MERGE_API_KEY
: Your Merge API keyMERGE_ACCOUNT_TOKEN
: Your Merge Linked Account tokenMERGE_TENANT
: (Optional) The Merge API tenant (US, EU, APAC). Defaults to US
Run the server
uvx merge-mcp
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.