Connect your AI Agents to Freshservice in minutes

Merge lets you securely connect your agents to Freshservice and thousands of tools instantly

Available tools

list_agents

Retrieve a paginated list of all agents in the Freshservice account

get_agent

Get detailed information about a specific agent by ID

create_agent

Create a new agent with email, name, role, and group assignments

update_agent

Update an existing agent's profile, role, or group memberships

delete_agent

Remove an agent from the Freshservice account

list_assets

Retrieve a paginated list of IT assets managed in the system

get_asset

Get detailed information about a specific asset by ID

create_asset

Create a new IT asset with name, type, and assignment information

update_asset

Update an existing asset's properties, assignment, or location

delete_asset

Remove an asset from the asset management system

list_asset_types

Retrieve a paginated list of all asset types in the system

get_asset_type

Get detailed information about a specific asset type by ID

list_changes

Retrieve a paginated list of change requests in the system

get_change

Get detailed information about a specific change request by ID

create_change

Create a new change request with planning, risk assessment, and scheduling information

update_change

Update an existing change request's status, schedule, or implementation details

delete_change

Remove a change request from the system

list_problems

Retrieve a paginated list of problems tracked in the system

get_problem

Get detailed information about a specific problem by ID

create_problem

Create a new problem record with subject, description, and analysis details

update_problem

Update an existing problem's status, analysis, or resolution information

delete_problem

Remove a problem record from the system

list_releases

Retrieve a paginated list of software releases managed in the system

get_release

Get detailed information about a specific release by ID

create_release

Create a new release with planning dates, type, and associated changes

update_release

Update an existing release's schedule, status, or completion details

delete_release

Remove a release record from the system

list_requesters

Retrieve a paginated list of all requesters (end users) in the system

get_requester

Get detailed information about a specific requester by ID

create_requester

Create a new requester with email, name, and optional contact information

update_requester

Update an existing requester's profile or contact information

delete_requester

Remove a requester from the system

list_solution_articles

Retrieve a paginated list of solution articles from a specific folder

get_solution_article

Get detailed information about a specific solution article by ID

create_solution_article

Create a new solution article with title, content, and categorization

update_solution_article

Update an existing solution article's content, status, or metadata

delete_solution_article

Delete a solution article from the system

list_solution_categories

Retrieve a paginated list of solution categories

get_solution_category

Get detailed information about a specific solution category by ID

create_solution_category

Create a new solution category

update_solution_category

Update an existing solution category's properties

delete_solution_category

Delete a solution category from the system

list_solution_folders

Retrieve a paginated list of solution folders with optional category filtering

get_solution_folder

Get detailed information about a specific solution folder by ID

create_solution_folder

Create a new solution folder within a category

update_solution_folder

Update an existing solution folder's properties

delete_solution_folder

Delete a solution folder from the system

list_tickets

Retrieve a paginated list of tickets from Freshservice with optional filtering

get_ticket

Get detailed information about a specific ticket by ID

create_ticket

Create a new service desk ticket with subject, description, and requester information

update_ticket

Update an existing ticket's properties including status, priority, assignment, or custom fields

delete_ticket

Delete a ticket permanently from the system

restore_ticket

Restore a previously deleted ticket back to active status

list_ticket_conversations

Retrieve all conversations, notes, and replies associated with a specific ticket

add_ticket_note

Add an internal or public note to a ticket with optional email notifications

reply_to_ticket

Send a reply to the ticket requester via email with optional CC recipients

validate_credential

Validate Freshservice credentials. Verifies credentials during setup.

View all tools by creating a free accountSee more tools

How to set up Merge Agent Handler

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}
11
Copy Code

Open 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}
Copy Code
Copied!

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  }
Copy Code

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}
Copy Code

FAQs on using Merge's Freshservice  MCP server

FAQs on using Merge's Freshservice  MCP server

What is a Freshservice MCP?

It's an MCP server that routes your agents directly into Freshservice's IT service management platform via tools. Your agents can invoke these tools to create and update tickets, manage IT assets, log change requests, add notes to incidents, and more.

Freshworks doesn't offer an MCP server purpose built for Freshservice, but you can use one from a third-party platform, like Merge Agent Handler.

How can I use the Freshservice MCP server?

The use cases naturally depend on the agent you've built, but here are a few common ones:

  • Auto-ticket creation from monitoring alerts: When an alert fires in a tool like Datadog or PagerDuty, an agent creates a Freshservice ticket with the error details pre-populated, sets the appropriate priority, and assigns it to the on-call engineer automatically
  • Ticket triage from Slack: A Slack-based agent monitors a support channel and when a user reports an issue, it creates a Freshservice ticket, links it to the requester's profile, and replies in the thread with the ticket number and status
  • Change request logging for deployments: When a deployment is approved in a CI/CD pipeline, an agent opens a change request in Freshservice, fills in the deployment scope and rollback plan, and notifies the change advisory board
  • Asset reclamation on offboarding: When an employee offboarding ticket is created in Freshservice, an agent looks up all assets assigned to that person in the CMDB and creates individual tasks to reclaim each device before the departure date

What are popular tools for Freshservice's MCP server?

Here are some of the most commonly used tools:

  • create_ticket: opens a new service desk ticket with fields like subject, description, priority, and assignee. Use this when an agent needs to log an incident or request triggered by an event in another system
  • update_ticket: modifies an existing ticket's status, priority, assignee, or custom fields. Good for workflows that need to escalate, reassign, or close tickets based on conditions evaluated outside Freshservice
  • list_tickets: retrieves tickets filtered by status, priority, requester, or date range. Useful for agents that need to pull a queue of open incidents for triage or reporting
  • add_ticket_note: appends a private or public note to an existing ticket. Call this when an agent gathers context from another tool and needs to document it against the ticket without changing its status
  • create_change: opens a change request with fields for type, risk level, planned dates, and approvers. Use this when an agent detects an approved deployment or configuration change that needs to be tracked in the ITSM workflow
  • list_assets: returns IT assets from the CMDB, filterable by type, status, or assigned user. Helpful when an agent needs to look up what hardware or software is tied to a specific employee or department

What makes Merge Agent Handler's Freshservice MCP server better than alternative Freshservice MCP servers?

There are a few clear advantages to running Freshservice through Merge Agent Handler rather than wiring it up directly or using a community server:

  • Enterprise-grade security and DLP: Merge Agent Handler includes built-in data loss prevention controls that let you block or redact sensitive fields before they reach an agent. For Freshservice, this means you can prevent ticket details, requester contact information, and internal IT notes from being exposed even when the agent has broad read access
  • Managed authentication and credentials: Merge stores and refreshes Freshservice API credentials on your behalf. You never need to inject raw keys into an agent or rebuild your auth flow when credentials rotate
  • Real-time observability and audit trail: Every tool call against Freshservice is recorded: timestamp, tool name, inputs, and response metadata. Your IT and security teams can audit exactly what the agent touched without adding any instrumentation to the agent itself
  • Tool Packs and controlled access: Tool Packs let you bundle specific Freshservice tools with tools from other connectors into a single MCP endpoint, scoped to a specific use case. An agent gets exactly the tools it needs, nothing more

How can I start using Merge Agent Handler's Freshservice MCP server?

You can take the following steps:

1. Create or log into your Merge Agent Handler account and navigate to Tool Packs (collections of connector tools scoped to a specific use case).

2. Create a new Tool Pack, then find and enable the Freshservice connector. Choose which tools to include: read tools like list_tickets and list_assets are enough for reporting and triage use cases, while write tools like create_ticket and update_ticket are needed if your agent should take action on service desk records.

3. Add a Registered User inside the Tool Pack. This is the identity context under which your agent operates. Merge generates a unique MCP URL scoped to this user once it's created.

4. From the Registered User detail page, authenticate Freshservice by entering your API credentials. Merge stores and manages those credentials going forward.

5. Copy the MCP URL from the Tool Pack detail page and generate an API key from Settings. You'll need both to connect your agent.

6. Add the MCP server to your agent or IDE using the MCP URL and API key. Your Freshservice tools are now accessible through that endpoint.

Explore other MCP servers built and managed by Merge

No items found.

Ready to try it out?

Whether you're an engineer experimenting with agents or a product manager looking to add tools, you can get started for free now