Freshdesk MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Freshdesk MCP Servershow me all open high priority tickets"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Freshdesk MCP Server
Hey! This is a custom Model Context Protocol (MCP) server for Freshdesk. It's built on top of FastMCP to let your AI agents (like Claude Desktop or custom LangChain setups) read and write directly to your Freshdesk account.
What can it do?
I've packed in a bunch of tools so the AI can handle almost any helpdesk task:
Tickets & Responses
get_tickets: Search and filter incoming tickets.get_ticket: Pull all details for a specific ticket.create_ticket: Open a new support ticket.update_ticket: Change status or priority.delete_ticket: Trash a ticket (be careful with this one).reply_ticket: Send a reply to the customer.add_note: Drop an internal or public note on a thread.list_conversations: Grab the entire back-and-forth history of a ticket.create_outbound_email: Send proactive emails (fully supports CC, BCC, tags, and custom fields).
Customers & Companies
search_contacts: Look up customers by email or phone.get_contact/create_contact/update_contact: Manage your user base.get_company/create_company: Manage companies.
Agents & Knowledge Base
list_agents/get_agent: See who is working on what.search_solution_articles/get_solution_article: Let the AI search your help docs so it can answer questions better.
Related MCP server: Freshservice MCP Server
How to run it locally
If you just want to run this locally on your own machine (like inside Claude Desktop), it's super simple:
Clone this repo and set up your environment:
python -m venv venv source venv/bin/activate pip install -e .Copy the
.env.examplefile to.envand drop in your Freshdesk domain and API key.Start it up:
mcp dev src/freshdesk_mcp/server.py
Running it on a Network (Secure JWT Auth)
If you're hosting this on a cloud server so multiple remote agents can talk to it, you don't want just anyone hitting your API. I built a lightweight, database-free JWT authentication layer over the SSE connection to keep it safe.
Here's how to use it:
In your
.env, set up yourJWT_SECRET_KEYand define who is allowed to connect usingALLOWED_CLIENTS=agent1:pass123,agent2:secure456.Run the secure server wrapper:
python -m freshdesk_mcp.serveYour clients will first need to send a
POSTrequest to/token(using Basic Auth with their agent credentials) to get a 1-hour JWT.They can then connect to the main MCP stream by passing
Authorization: Bearer <their_token>in the headers.
(Pro-tip: If you want to make sure an AI agent can only read data and doesn't accidentally delete anything, just set STRICT_MODE=True in your .env and it will lock down all destructive tools).
License
MIT License - feel free to use and modify it however you need!
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityCmaintenanceIntegrate AI models with Freshdesk to automate support operations. Create, update, and manage support tickets seamlessly through the Freshdesk API. Enhance your customer support experience with automated ticket management and AI-driven interactions.Last updated5965MIT
- Alicense-qualityDmaintenanceEnables AI models to interact with Freshservice IT service management platform, allowing automated ticket management, change requests, asset tracking, and solution article operations through natural language commands.Last updatedMIT
- FlicenseBqualityDmaintenanceEnables AI assistants to connect with Freshservice ITSM for managing tickets, assets, agents, and organizational data through natural language. It provides a comprehensive set of tools for performing CRUD operations on service desk records and searching across the Freshservice platform.Last updated531
- Alicense-qualityAmaintenanceProvides AI assistants with structured access to the Freshdesk customer support platform, including tickets, contacts, companies, agents, groups, knowledge base, and SLA configuration. Features decision-tree navigation and destructive-action guardrails.Last updated83MIT
Related MCP Connectors
Freshdesk MCP Pack — helpdesk ticket and contact management via Freshdesk API v2.
Give AI agents access to form submissions — read, search, update, and process file attachments.
Your company's brain for AI agents. Cited, permission-aware knowledge across every system.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Sidd07Dev/freshdeskMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server