Jake Shore 6fd0eef055 Rebrand to MCPEngage and add Basecamp-specific content
- Fixed all MCPEngine → MCPEngage references
- Added 8 Basecamp-specific power moves for project management & team collaboration
- Updated README with accurate tool count and real Basecamp 4 API details
- Added proper OAuth 2.0 authentication documentation
- Updated package.json author
- Enhanced .env.example with detailed credential instructions including User-Agent
2026-02-02 07:01:25 -05:00

46 lines
1.0 KiB
JSON

{
"name": "basecamp-mcp-server",
"version": "1.0.0",
"description": "MCP server for Basecamp 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/Basecamp-MCP-2026-Complete.git"
},
"keywords": [
"mcp",
"basecamp",
"basecamp",
"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"
}
}