@velocity-bpa/n8n-nodes-broadcom-clarity-ppm
v1.0.0
Published
n8n community node for Broadcom Clarity PPM integration
Maintainers
Readme
n8n-nodes-broadcom-clarity-ppm
[Velocity BPA Licensing Notice]
This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).
Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.
For licensing information, visit https://velobpa.com/licensing or contact [email protected].
An n8n community node for integrating with Broadcom Clarity PPM. This node provides 6 resources with full CRUD operations, enabling comprehensive project portfolio management automation including projects, tasks, resources, timesheets, investments, and portfolio items.
Features
- Complete Project Management - Create, read, update and delete projects with full metadata support
- Task Management - Comprehensive task operations including assignments, dependencies, and status tracking
- Resource Management - Manage human and material resources with availability and allocation tracking
- Timesheet Integration - Full timesheet functionality for time tracking and project billing
- Investment Portfolio - Handle investment requests, approvals, and portfolio analysis
- Portfolio Items - Manage strategic portfolio items with governance and reporting capabilities
- Enterprise Authentication - Secure API key-based authentication for enterprise environments
- Error Handling - Robust error handling with detailed error messages and retry mechanisms
Installation
Community Nodes (Recommended)
- Open n8n
- Go to Settings → Community Nodes
- Click Install a community node
- Enter
n8n-nodes-broadcom-clarity-ppm - Click Install
Manual Installation
cd ~/.n8n
npm install n8n-nodes-broadcom-clarity-ppmDevelopment Installation
git clone https://github.com/Velocity-BPA/n8n-nodes-broadcom-clarity-ppm.git
cd n8n-nodes-broadcom-clarity-ppm
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-broadcom-clarity-ppm
n8n startCredentials Setup
| Field | Description | Required | |-------|-------------|----------| | API Key | Your Broadcom Clarity PPM API key | ✓ | | Server URL | Base URL of your Clarity PPM instance (e.g., https://clarity.company.com) | ✓ | | API Version | API version to use (default: v15.9.3) | ✗ |
Resources & Operations
1. Project
| Operation | Description | |-----------|-------------| | Create | Create a new project with specified parameters | | Get | Retrieve project details by ID or code | | Get All | List all projects with optional filtering | | Update | Update existing project properties | | Delete | Remove a project from the system |
2. Task
| Operation | Description | |-----------|-------------| | Create | Create a new task within a project | | Get | Retrieve task details by ID | | Get All | List all tasks with filtering options | | Update | Update task properties and assignments | | Delete | Remove a task from the project |
3. Resource
| Operation | Description | |-----------|-------------| | Create | Create a new resource (human or material) | | Get | Retrieve resource details and availability | | Get All | List all resources with filtering capabilities | | Update | Update resource information and allocations | | Delete | Remove a resource from the system |
4. Timesheet
| Operation | Description | |-----------|-------------| | Create | Create timesheet entries for resources | | Get | Retrieve timesheet data by ID or period | | Get All | List timesheets with date and resource filters | | Update | Update timesheet entries and submit for approval | | Delete | Remove timesheet entries |
5. Investment
| Operation | Description | |-----------|-------------| | Create | Create new investment requests | | Get | Retrieve investment details and status | | Get All | List investments with portfolio filtering | | Update | Update investment information and status | | Delete | Remove investment from portfolio |
6. Portfolio Item
| Operation | Description | |-----------|-------------| | Create | Create strategic portfolio items | | Get | Retrieve portfolio item details | | Get All | List all portfolio items with categorization | | Update | Update portfolio item properties and status | | Delete | Remove portfolio item from strategic view |
Usage Examples
// Create a new project
{
"name": "Digital Transformation Initiative",
"code": "DTI-2024",
"manager": "[email protected]",
"startDate": "2024-01-15",
"finishDate": "2024-12-31",
"description": "Company-wide digital transformation project",
"priority": "High"
}// Create a task within a project
{
"projectCode": "DTI-2024",
"name": "Requirements Analysis",
"duration": 40,
"assignedResource": "[email protected]",
"predecessors": [],
"startDate": "2024-01-15"
}// Log timesheet entry
{
"resourceId": "[email protected]",
"projectCode": "DTI-2024",
"taskId": "REQ-001",
"date": "2024-01-15",
"hours": 8,
"description": "Stakeholder interviews and documentation"
}// Create investment request
{
"name": "AI Implementation Project",
"requestedAmount": 250000,
"businessCase": "Improve operational efficiency by 30%",
"category": "Technology",
"requestor": "[email protected]",
"priority": "High"
}Error Handling
| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key is correct and active | | Resource Not Found | Requested project, task, or resource doesn't exist | Check ID/code exists in Clarity PPM | | Insufficient Permissions | User lacks rights for requested operation | Contact admin to grant appropriate permissions | | Validation Error | Required fields missing or invalid data format | Review field requirements and data types | | Server Timeout | Clarity PPM server didn't respond within timeout | Check server status and network connectivity | | Rate Limit Exceeded | Too many API requests in time window | Implement delays between requests |
Development
npm install
npm run build
npm test
npm run lint
npm run devAuthor
Velocity BPA
- Website: velobpa.com
- GitHub: Velocity-BPA
Licensing
This n8n community node is licensed under the Business Source License 1.1.
Free Use
Permitted for personal, educational, research, and internal business use.
Commercial Use
Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.
For licensing inquiries: [email protected]
See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.
Contributing
Contributions are welcome! Please ensure:
- Code follows existing style conventions
- All tests pass (
npm test) - Linting passes (
npm run lint) - Documentation is updated for new features
- Commit messages are descriptive
Support
- Issues: GitHub Issues
- Broadcom Clarity PPM Documentation: Broadcom Support Portal
- Community Forum: n8n Community
