Jake Shore cb341fbdc2 Rebrand to MCPEngage + deep Freshdesk customization
- Fix all MCPEngine → MCPEngage references
- Add Freshdesk-specific Power Moves (5 support/helpdesk use cases)
- Correct tool count (8 REST API tools) with accurate descriptions
- Add support-specific prompts (triaging, SLA management, KB gaps)
- Document Freshdesk API key authentication (Basic Auth)
- Link to official Freshdesk API v2 docs
- Update .env.example with FRESHDESK_DOMAIN requirement
- Add rate limiting & status code troubleshooting
2026-02-02 06:59:48 -05:00

46 lines
1.0 KiB
JSON

{
"name": "freshdesk-mcp-server",
"version": "1.0.0",
"description": "MCP server for Freshdesk API - 2026 Complete Version",
"type": "module",
"main": "dist/index.js",
"author": "MCPEngage <hello@mcpengage.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BusyBee3333/Freshdesk-MCP-2026-Complete.git"
},
"keywords": [
"mcp",
"freshdesk",
"freshdesk",
"api",
"ai"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"zod": "^3.22.4",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}