Jake Shore ff349dc88f FreshBooks: Complete MCP server with 55+ tools and 22 React apps
- 55+ tools across 12 categories (invoices, clients, expenses, estimates, time, projects, payments, items, taxes, reports, recurring, accounts)
- FreshBooks API client with OAuth2, pagination, error handling
- 22 dark-themed React MCP apps (invoice dashboard, builder, client dashboard, expense tracker, time tracker, project dashboard, reports, etc.)
- Full TypeScript types for all FreshBooks entities
- Comprehensive README with examples and architecture docs
2026-02-12 17:09:42 -05:00

35 lines
752 B
JSON

{
"name": "@mcpengine/freshbooks",
"version": "1.0.0",
"description": "FreshBooks MCP Server - Complete accounting, invoicing, time tracking, and financial management",
"main": "dist/main.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"start": "node dist/main.js"
},
"keywords": [
"mcp",
"freshbooks",
"accounting",
"invoicing",
"time-tracking",
"expenses",
"estimates",
"payments"
],
"author": "MCPEngine",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}