Add missing resources to CLI, MCP, and n8n surfaces

Audit all three API surfaces against the console GraphQL schema and add
missing resources: asset, audit, datum, dpia, evidence upload, measure,
obligation, processing activity, rights request, snapshot, task, tia,
trust center (with references/files), and vendor management CLI
commands; MCP tools for deletes, rights requests, trust center, vendor
contacts/services, and compliance external URLs; n8n nodes for
obligation, finding, task, evidence, processing activity, dpia, tia,
rights request, snapshot, audit log, access review, organization
context, trust center, and additional control/measure/vendor operations.

Include MCP e2e test infrastructure (testutil MCP client with API key
auth and JSON-RPC session management) and tests covering all new MCP
tools.

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2026-04-21 16:08:37 +02:00
parent f505e23cb0
commit 7be92defcc
220 changed files with 26395 additions and 7 deletions

View File

@@ -0,0 +1,235 @@
// Copyright (c) 2025-2026 Probo Inc <hello@getprobo.com>.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
import type { INodeProperties, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
import { proboApiRequest } from '../../GenericFunctions';
export const description: INodeProperties[] = [
{
displayName: 'Finding ID',
name: 'findingId',
type: 'string',
displayOptions: {
show: {
resource: ['finding'],
operation: ['update'],
},
},
default: '',
description: 'The ID of the finding to update',
required: true,
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['finding'],
operation: ['update'],
},
},
options: [
{
displayName: 'Corrective Action',
name: 'correctiveAction',
type: 'string',
default: '',
description: 'The corrective action for the finding',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
description: 'The description of the finding',
},
{
displayName: 'Due Date',
name: 'dueDate',
type: 'string',
default: '',
description: 'The due date for the finding (ISO 8601 format)',
},
{
displayName: 'Effectiveness Check',
name: 'effectivenessCheck',
type: 'string',
default: '',
description: 'The effectiveness check for the finding',
},
{
displayName: 'Identified On',
name: 'identifiedOn',
type: 'string',
default: '',
description: 'The date the finding was identified (ISO 8601 format)',
},
{
displayName: 'Owner ID',
name: 'ownerId',
type: 'string',
default: '',
description: 'The ID of the person who owns this finding',
},
{
displayName: 'Priority',
name: 'priority',
type: 'options',
options: [
{
name: '(Unchanged)',
value: '',
},
{
name: 'Low',
value: 'LOW',
},
{
name: 'Medium',
value: 'MEDIUM',
},
{
name: 'High',
value: 'HIGH',
},
],
default: '',
description: 'The priority of the finding',
},
{
displayName: 'Risk ID',
name: 'riskId',
type: 'string',
default: '',
description: 'The ID of the associated risk',
},
{
displayName: 'Root Cause',
name: 'rootCause',
type: 'string',
default: '',
description: 'The root cause of the finding',
},
{
displayName: 'Source',
name: 'source',
type: 'string',
default: '',
description: 'The source of the finding',
},
{
displayName: 'Status',
name: 'status',
type: 'options',
options: [
{
name: '(Unchanged)',
value: '',
},
{
name: 'Closed',
value: 'CLOSED',
},
{
name: 'False Positive',
value: 'FALSE_POSITIVE',
},
{
name: 'In Progress',
value: 'IN_PROGRESS',
},
{
name: 'Mitigated',
value: 'MITIGATED',
},
{
name: 'Open',
value: 'OPEN',
},
{
name: 'Risk Accepted',
value: 'RISK_ACCEPTED',
},
],
default: '',
description: 'The status of the finding',
},
],
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const findingId = this.getNodeParameter('findingId', itemIndex) as string;
const additionalFields = this.getNodeParameter('additionalFields', itemIndex, {}) as {
description?: string;
source?: string;
identifiedOn?: string;
rootCause?: string;
correctiveAction?: string;
ownerId?: string;
dueDate?: string;
status?: string;
priority?: string;
riskId?: string;
effectivenessCheck?: string;
};
const query = `
mutation UpdateFinding($input: UpdateFindingInput!) {
updateFinding(input: $input) {
finding {
id
kind
description
source
identifiedOn
rootCause
correctiveAction
dueDate
status
priority
effectivenessCheck
createdAt
updatedAt
}
}
}
`;
const input: Record<string, unknown> = { id: findingId };
if (additionalFields.description !== undefined) input.description = additionalFields.description === '' ? null : additionalFields.description;
if (additionalFields.source !== undefined) input.source = additionalFields.source === '' ? null : additionalFields.source;
if (additionalFields.identifiedOn !== undefined) input.identifiedOn = additionalFields.identifiedOn === '' ? null : additionalFields.identifiedOn;
if (additionalFields.rootCause !== undefined) input.rootCause = additionalFields.rootCause === '' ? null : additionalFields.rootCause;
if (additionalFields.correctiveAction !== undefined) input.correctiveAction = additionalFields.correctiveAction === '' ? null : additionalFields.correctiveAction;
if (additionalFields.ownerId !== undefined) input.ownerId = additionalFields.ownerId === '' ? null : additionalFields.ownerId;
if (additionalFields.dueDate !== undefined) input.dueDate = additionalFields.dueDate === '' ? null : additionalFields.dueDate;
if (additionalFields.status !== undefined) input.status = additionalFields.status;
if (additionalFields.priority !== undefined) input.priority = additionalFields.priority;
if (additionalFields.riskId !== undefined) input.riskId = additionalFields.riskId === '' ? null : additionalFields.riskId;
if (additionalFields.effectivenessCheck !== undefined) input.effectivenessCheck = additionalFields.effectivenessCheck === '' ? null : additionalFields.effectivenessCheck;
const responseData = await proboApiRequest.call(this, query, { input });
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}