
List environments with optional search query. Supports pagination.
Create a new environment with a name and optional description.
Get environment details by ID.
Update an environment's name or description.
Delete an environment by ID.
List incidents with optional filters by status or search query. Supports pagination.
Create a new incident with name, optional summary, severity, and team assignments.
Get incident details by ID.
Update an incident's name, summary, severity, or status.
Resolve an incident by ID.
Delete (archive) an incident by ID.
List runbooks with optional search query. Supports pagination.
Get runbook details by ID.
List services with optional search query. Supports pagination.
Create a new service with a name and optional description.
Get service details by ID.
Update a service's name or description.
Delete a service by ID.
List all available severities. Supports pagination.
List tasks for an incident with pagination.
Create a new task for an incident.
Get details for a specific task in an incident.
Update a task in an incident.
Delete a task from an incident.
List teams with optional search query. Supports pagination.
Create a new team with a name and optional description.
Get team details by ID.
Update a team's name or description.
Delete a team by ID.
List users with optional search query. Supports pagination.
Get user details by ID.
Validate FireHydrant API credentials.

In an mcp.json file, add the configuration below, and restart Cursor.
Learn more in the official documentation ↗
1{
2 "mcpServers": {
3 "agent-handler": {
4 "url": "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
5 "headers": {
6 "Authorization": "Bearer yMt*****"
7 }
8 }
9 }
10}
11Open your Claude Desktop configuration file and add the server configuration below. You'll also need to restart the application for the changes to take effect.
Make sure Claude is using the Node v20+.
Learn more in the official documentation ↗
1{
2 "mcpServers": {
3 "agent-handler": {
4 "command": "npx",
5 "args": [
6 "-y",
7 "mcp-remote@latest",
8 "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
9 "--header",
10 "Authorization: Bearer ${AUTH_TOKEN}"
11 ],
12 "env": {
13 "AUTH_TOKEN": "yMt*****"
14 }
15 }
16 }
17}Open your Windsurf MCP configuration file and add the server configuration below.
Click on the refresh button in the top right of the Manage MCP server page or in the top right of the chat box in the box icon.
Learn more in the official documentation ↗
1{
2 "mcpServers": {
3 "agent-handler": {
4 "command": "npx",
5 "args": [
6 "-y",
7 "mcp-remote@latest",
8 "https://ah-api.merge.dev/api/v1/tool-packs/<tool-pack-id>/registered-users/<registered-user-id>/mcp",
9 "--header",
10 "Authorization: Bearer ${AUTH_TOKEN}"
11 ],
12 "env": {
13 "AUTH_TOKEN": "<ah-production-access-key>"
14 }
15 }
16 }
17 }In Command Palette (Cmd+Shift+P on macOS, Ctrl+Shift+P on Windows), run "MCP: Open User Configuration".
You can then add the configuration below and press "start" right under servers. Enter the auth token when prompted.
Learn more in the official documentation ↗
1{
2 "inputs": [
3 {
4 "type": "promptString",
5 "id": "agent-handler-auth",
6 "description": "Agent Handler AUTH_TOKEN", // "yMt*****" when prompt
7 "password": true
8 }
9 ],
10 "servers": {
11 "agent-handler": {
12 "type": "stdio",
13 "command": "npx",
14 "args": [
15 "-y",
16 "mcp-remote@latest",
17 "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
18 "--header",
19 "Authorization: Bearer ${input:agent-handler-auth}"
20 ]
21 }
22 }
23}It's an MCP server that connects your agents to FireHydrant's incident management platform via tools. Your agents can invoke these tools to create and update incidents, trigger runbooks, assign tasks to responders, query service health, and more.
FireHydrant offers an official MCP server, but you can also use one from a third-party platform, like Merge Agent Handler.
The use cases naturally depend on the agent you've built, but here are a few common ones:
Here are some of the most commonly used tools:
create_incident: opens a new FireHydrant incident with specified severity, affected services, and summary. Useful for agents that need to trigger incident response automatically based on signals from an external monitoring systemlist_incidents: retrieves active or historical incidents with optional filters for status, severity, or service. Call this when an agent needs to check current incident load before escalating or to build a weekly summary reportresolve_incident: marks an open incident as resolved and records a resolution note. Good for workflows where an agent confirms a fix in a deployment system and then closes the corresponding incident automaticallylist_runbooks: fetches the available runbooks in the FireHydrant account. Helpful when an agent needs to identify the right runbook for a given incident type before guiding a responder through next stepscreate_incident_task: adds a task to an active incident with an assigned owner and due time. Use this when an agent is coordinating multi-step response actions across different team memberslist_services: returns the registered services in FireHydrant, including ownership and environment details. Call this when an agent needs to determine which team owns an affected service during triageSeveral factors make Merge Agent Handler's FireHydrant MCP server a stronger choice than building your own or using an alternative:
You can take the following steps:
1. Create or log into your Merge Agent Handler account.
2. Install the Merge CLI by running pipx install merge-api, then run merge configure to link the CLI to your Merge account and merge login to authenticate your session.
3. Register the Agent Handler MCP server with Claude Code by running claude mcp add --transport http agent-handler https://ah-api.merge.dev/mcp, then open Claude Code and run /mcp to confirm agent-handler appears with a connected status.
4. Select agent-handler from the MCP list. This opens a browser window where you select which integrations to authenticate. Choose FireHydrant and complete the auth flow. Merge stores and manages the credentials going forward.
5. Open a Claude Code session and start querying FireHydrant data directly. The first time you use a FireHydrant tool, a Magic Link may appear to complete connector authentication.
If you want to connect Merge Agent Handler's FireHydrant MCP with internal or customer-facing agentic products, you can follow the steps in our docs.
Whether you're an engineer experimenting with agents or a product manager looking to add tools, you can get started for free now