mcpengine/servers/freshdesk/package.json
Jake Shore 601224bf70 fieldedge: Complete MCP server with 87 tools and 16 React apps
- Multi-file architecture with API client, comprehensive types, 13 tool domains
- 87 total tools covering customers, jobs, invoices, estimates, equipment, technicians, scheduling, inventory, payments, reporting, locations, service agreements, tasks
- 16 dark-themed React MCP apps (Dashboard, Customers, Jobs, Scheduling, Invoices, Estimates, Technicians, Equipment, Inventory, Payments, Service Agreements, Reports, Tasks, Calendar, Map View, Price Book)
- Full TypeScript support with zero compilation errors
- Comprehensive README with API coverage details
- Bearer token authentication with rate limiting and error handling
2026-02-12 18:18:51 -05:00

37 lines
756 B
JSON

{
"name": "@mcpengine/freshdesk",
"version": "1.0.0",
"description": "FreshDesk MCP Server - Complete support desk and customer service platform integration",
"main": "dist/main.js",
"type": "module",
"bin": {
"freshdesk-mcp": "./dist/main.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/main.js",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"freshdesk",
"helpdesk",
"support",
"customer-service",
"tickets"
],
"author": "MCPEngine",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}