The Freshdesk MCP Server is an implementation of the Model Context Protocol that integrates with Freshdesk. It allows AI models to interact directly with the Freshdesk platform to manage tickets, contacts, agents, and companies, essentially enabling automated support operations through AI assistance.
The simplest way to install the Freshdesk MCP server is via Smithery:
npx -y @smithery/cli install @effytech/freshdesk_mcp --client claude
Before installation, make sure you have:
uvx
installed on your systemTo install uvx
:
pip install uv
# or
brew install uv
claude_desktop_config.json
:"mcpServers": {
"freshdesk-mcp": {
"command": "uvx",
"args": [
"freshdesk-mcp"
],
"env": {
"FRESHDESK_API_KEY": "<YOUR_FRESHDESK_API_KEY>",
"FRESHDESK_DOMAIN": "<YOUR_FRESHDESK_DOMAIN>"
}
}
}
<YOUR_FRESHDESK_API_KEY>
with your actual Freshdesk API key<YOUR_FRESHDESK_DOMAIN>
with your Freshdesk domain (e.g., yourcompany.freshdesk.com
)For testing purposes, you can start the server manually:
uvx freshdesk-mcp --env FRESHDESK_API_KEY=<your_api_key> --env FRESHDESK_DOMAIN=<your_domain>
The server provides numerous tools for interacting with Freshdesk:
Once configured, you can ask Claude to perform operations like:
If you encounter issues:
uvx
command is available in your PATHThere are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.