Freshdesk MCP Server
Enables fetching and searching Freshdesk tickets, including details like conversations, attachments, and custom fields, via natural language queries.
README
Freshdesk MCP Server
A Model Context Protocol (MCP) server that fetches Freshdesk ticket details and provides them as context for LLM interactions.
Features
-
get_ticket - Fetch complete ticket details from a Freshdesk URL or ticket ID
- Ticket metadata (subject, status, priority, type, tags)
- Requester and assignee information
- All conversations (replies and private notes)
- Attachments list
- Time entries
- Satisfaction ratings
- Custom fields
-
search_tickets - Search tickets by text query
- Filter by status (open, pending, resolved, closed)
- Filter by priority (low, medium, high, urgent)
- Configurable result limit
-
get_agent_tickets - Get tickets assigned to a specific agent
- Search by agent name (supports partial matching)
- Filter by status
- Configurable result limit
Installation
Using npx (Recommended)
No installation required. Add directly to your config:
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"freshdesk": {
"command": "npx",
"args": ["-y", "github:nikhilchintawar/freshdesk-mcp"],
"env": {
"FRESHDESK_API_KEY": "your-api-key",
"FRESHDESK_DOMAIN": "yourcompany"
}
}
}
}
Claude Code (~/.claude/settings.json):
{
"mcpServers": {
"freshdesk": {
"command": "npx",
"args": ["-y", "github:nikhilchintawar/freshdesk-mcp"],
"env": {
"FRESHDESK_API_KEY": "your-api-key",
"FRESHDESK_DOMAIN": "yourcompany"
}
}
}
}
Manual Installation
# Clone the repository
git clone https://github.com/nikhilchintawar/freshdesk-mcp.git
cd freshdesk-mcp
# Install dependencies
npm install
Then add to your config:
{
"mcpServers": {
"freshdesk": {
"command": "node",
"args": ["/absolute/path/to/freshdesk-mcp/build/index.js"],
"env": {
"FRESHDESK_API_KEY": "your-api-key",
"FRESHDESK_DOMAIN": "yourcompany"
}
}
}
}
Configuration
Config File Locations
- Claude Desktop (macOS):
~/Library/Application Support/Claude/claude_desktop_config.json - Claude Desktop (Windows):
%APPDATA%\Claude\claude_desktop_config.json - Claude Code:
~/.claude/settings.json
Environment Variables
| Variable | Description | Required |
|---|---|---|
FRESHDESK_API_KEY |
Your Freshdesk API key | Yes |
FRESHDESK_DOMAIN |
Your Freshdesk subdomain (e.g., mycompany for mycompany.freshdesk.com) |
Yes |
Usage Examples
Once configured, you can use natural language to interact with Freshdesk:
- "Get the details of ticket https://mycompany.freshdesk.com/a/tickets/12345"
- "Search for tickets about 'login issue'"
- "Show me all open tickets assigned to John"
- "Find high priority tickets related to billing"
Getting Your Freshdesk API Key
- Log in to your Freshdesk account
- Click on your profile icon → Profile Settings
- Your API key is displayed on the right side of the page
Development
# Watch mode for development
npm run dev
# Build for production
npm run build
# Test with MCP Inspector
FRESHDESK_API_KEY=your-key FRESHDESK_DOMAIN=your-domain \
npx @modelcontextprotocol/inspector node build/index.js
License
MIT
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.