- 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
35 lines
752 B
JSON
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"
|
|
}
|
|
}
|