
Retrieve a paginated list of all agents in the Freshservice account
Get detailed information about a specific agent by ID
Create a new agent with email, name, role, and group assignments
Update an existing agent's profile, role, or group memberships
Remove an agent from the Freshservice account
Retrieve a paginated list of IT assets managed in the system
Get detailed information about a specific asset by ID
Create a new IT asset with name, type, and assignment information
Update an existing asset's properties, assignment, or location
Remove an asset from the asset management system
Retrieve a paginated list of all asset types in the system
Get detailed information about a specific asset type by ID
Retrieve a paginated list of change requests in the system
Get detailed information about a specific change request by ID
Create a new change request with planning, risk assessment, and scheduling information
Update an existing change request's status, schedule, or implementation details
Remove a change request from the system
Retrieve a paginated list of problems tracked in the system
Get detailed information about a specific problem by ID
Create a new problem record with subject, description, and analysis details
Update an existing problem's status, analysis, or resolution information
Remove a problem record from the system
Retrieve a paginated list of software releases managed in the system
Get detailed information about a specific release by ID
Create a new release with planning dates, type, and associated changes
Update an existing release's schedule, status, or completion details
Remove a release record from the system
Retrieve a paginated list of all requesters (end users) in the system
Get detailed information about a specific requester by ID
Create a new requester with email, name, and optional contact information
Update an existing requester's profile or contact information
Remove a requester from the system
Retrieve a paginated list of solution articles from a specific folder
Get detailed information about a specific solution article by ID
Create a new solution article with title, content, and categorization
Update an existing solution article's content, status, or metadata
Delete a solution article from the system
Retrieve a paginated list of solution categories
Get detailed information about a specific solution category by ID
Create a new solution category
Update an existing solution category's properties
Delete a solution category from the system
Retrieve a paginated list of solution folders with optional category filtering
Get detailed information about a specific solution folder by ID
Create a new solution folder within a category
Update an existing solution folder's properties
Delete a solution folder from the system
Retrieve a paginated list of tickets from Freshservice with optional filtering
Get detailed information about a specific ticket by ID
Create a new service desk ticket with subject, description, and requester information
Update an existing ticket's properties including status, priority, assignment, or custom fields
Delete a ticket permanently from the system
Restore a previously deleted ticket back to active status
Retrieve all conversations, notes, and replies associated with a specific ticket
Add an internal or public note to a ticket with optional email notifications
Send a reply to the ticket requester via email with optional CC recipients
Validate Freshservice credentials. Verifies credentials during setup.

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 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.
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_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 systemupdate_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 Freshservicelist_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 reportingadd_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 statuscreate_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 workflowlist_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 departmentThere are a few clear advantages to running Freshservice through Merge Agent Handler rather than wiring it up directly or using a community 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.
Whether you're an engineer experimenting with agents or a product manager looking to add tools, you can get started for free now