Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | 16x 16x 16x 16x 16x 16x 4x 4x 4x 4x 3x 3x 1x 7x 3x 3x 3x 3x 2x 2x 2x 1x 1x 2x 1x 1x 16x 10x 16x 4x 16x 2x 1x 1x 2x 1x | import * as z from "zod";
import { BrowseIntegrationsSchema } from "./schema-readonly";
import { ManageIntegrationSchema } from "./schema";
import { gitlab, toQuery } from "../../utils/gitlab-api";
import { getEffectiveProjectId, isActionDenied } from "../../config";
import { ToolRegistry, EnhancedToolDefinition } from "../../types";
/**
* Integrations tools registry - 2 CQRS tools for managing GitLab project integrations
* Uses discriminated union schemas for type-safe action handling.
*
* browse_integrations (Query): list, get
* manage_integration (Command): update, disable
*/
export const integrationsToolRegistry: ToolRegistry = new Map<string, EnhancedToolDefinition>([
// ============================================================================
// browse_integrations - CQRS Query Tool (discriminated union schema)
// TypeScript automatically narrows types in each switch case
// ============================================================================
[
"browse_integrations",
{
name: "browse_integrations",
description:
"Discover active project integrations and their configuration. Actions: list (all active: Slack, Jira, Discord, Teams, Jenkins, etc.), get (specific integration settings by slug). Related: manage_integration to configure/disable.",
inputSchema: z.toJSONSchema(BrowseIntegrationsSchema, {}),
gate: { envVar: "USE_INTEGRATIONS", defaultValue: true },
handler: async (args: unknown) => {
const input = BrowseIntegrationsSchema.parse(args);
// Runtime validation: reject denied actions even if they bypass schema filtering
Iif (isActionDenied("browse_integrations", input.action)) {
throw new Error(`Action '${input.action}' is not allowed for browse_integrations tool`);
}
const projectId = getEffectiveProjectId(input.project_id);
switch (input.action) {
case "list": {
// TypeScript knows: input has project_id, per_page, page
const query = toQuery(
{
per_page: input.per_page,
page: input.page,
},
[]
);
return gitlab.get(`projects/${encodeURIComponent(projectId)}/integrations`, { query });
}
case "get": {
// TypeScript knows: input has project_id, integration
return gitlab.get(
`projects/${encodeURIComponent(projectId)}/integrations/${input.integration}`
);
}
/* istanbul ignore next -- unreachable with Zod discriminatedUnion */
default:
throw new Error(`Unknown action: ${(input as { action: string }).action}`);
}
},
},
],
// ============================================================================
// manage_integration - CQRS Command Tool (discriminated union schema)
// TypeScript automatically narrows types in each switch case
// ============================================================================
[
"manage_integration",
{
name: "manage_integration",
description:
"Configure or disable project integrations (50+ supported). Actions: update (enable/modify with integration-specific config), disable (deactivate integration). Note: gitlab-slack-application requires OAuth install from GitLab UI. Related: browse_integrations for discovery.",
inputSchema: z.toJSONSchema(ManageIntegrationSchema, {}),
gate: { envVar: "USE_INTEGRATIONS", defaultValue: true },
handler: async (args: unknown) => {
const input = ManageIntegrationSchema.parse(args);
// Runtime validation: reject denied actions even if they bypass schema filtering
Iif (isActionDenied("manage_integration", input.action)) {
throw new Error(`Action '${input.action}' is not allowed for manage_integration tool`);
}
const projectId = getEffectiveProjectId(input.project_id);
const integrationSlug = input.integration;
switch (input.action) {
case "update": {
// TypeScript knows: input has project_id, integration (required), plus event fields and config (optional)
const {
action: _action,
project_id: _project_id,
integration: _integration,
...body
} = input;
// Flatten config object if provided
let finalBody = { ...body };
if (body.config) {
const { config, ...rest } = body;
finalBody = { ...rest, ...config };
}
return gitlab.put(
`projects/${encodeURIComponent(projectId)}/integrations/${integrationSlug}`,
{
body: finalBody,
contentType: "json",
}
);
}
case "disable": {
// TypeScript knows: input has project_id, integration (required)
await gitlab.delete(
`projects/${encodeURIComponent(projectId)}/integrations/${integrationSlug}`
);
return { deleted: true };
}
/* istanbul ignore next -- unreachable with Zod discriminatedUnion */
default:
throw new Error(`Unknown action: ${(input as { action: string }).action}`);
}
},
},
],
]);
/**
* Get read-only tool names from the registry.
* Only browse_integrations is read-only. manage_integration is purely write operations.
*/
export function getIntegrationsReadOnlyToolNames(): string[] {
return ["browse_integrations"];
}
/**
* Get all tool definitions from the registry
*/
export function getIntegrationsToolDefinitions(): EnhancedToolDefinition[] {
return Array.from(integrationsToolRegistry.values());
}
/**
* Get filtered tools based on read-only mode
*/
export function getFilteredIntegrationsTools(
readOnlyMode: boolean = false
): EnhancedToolDefinition[] {
if (readOnlyMode) {
const readOnlyNames = getIntegrationsReadOnlyToolNames();
return Array.from(integrationsToolRegistry.values()).filter(tool =>
readOnlyNames.includes(tool.name)
);
}
return getIntegrationsToolDefinitions();
}
|