Skip to main content
Glama
effytech

Freshdesk MCP server

by effytech

view_solution_article

Access and display solution articles in Freshdesk using the article ID to retrieve relevant support content for customer inquiries.

Instructions

View a solution article in Freshdesk.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
article_idYes

Implementation Reference

  • The handler function for the 'view_solution_article' tool, which retrieves a specific solution article from Freshdesk using its ID. It is registered as an MCP tool via the @mcp.tool() decorator.
    @mcp.tool() async def view_solution_article(article_id: int)-> Dict[str, Any]: """View a solution article in Freshdesk.""" url = f"https://{FRESHDESK_DOMAIN}/api/v2/solutions/articles/{article_id}" 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()
  • The @mcp.tool() decorator registers the view_solution_article function as an MCP tool.
    @mcp.tool()

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