Skip to main content
Glama
effytech

Freshdesk MCP server

by effytech

list_canned_response_folders

Retrieve all canned response folders in Freshdesk to streamline support ticket management. Enhance efficiency by accessing pre-defined templates for automated customer interactions.

Instructions

List all canned response folders in Freshdesk.

Input Schema

NameRequiredDescriptionDefault

No arguments

Input Schema (JSON Schema)

{ "properties": {}, "title": "list_canned_response_foldersArguments", "type": "object" }

Implementation Reference

  • The main handler function for the 'list_canned_response_folders' MCP tool. It is registered via the @mcp.tool() decorator and fetches the list of canned response folders from the Freshdesk API v2 endpoint.
    @mcp.tool() async def list_canned_response_folders()-> list[Dict[str, Any]]: """List all canned response folders in Freshdesk.""" url = f"https://{FRESHDESK_DOMAIN}/api/v2/canned_response_folders" headers = { "Authorization": f"Basic {base64.b64encode(f'{FRESHDESK_API_KEY}:X'.encode()).decode()}" } async with httpx.AsyncClient() as client: response = await client.get(url, headers=headers) return response.json()

Latest Blog Posts

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/effytech/freshdesk_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server