import type { GitLabGetIssueParams, GitLabGetIssueResponse } from '@/tools/gitlab/types' import { getGitLabApiBase } from '@/tools/gitlab/utils' import type { ToolConfig } from '@/tools/types' export const gitlabGetIssueTool: ToolConfig = { id: 'gitlab_get_issue', name: 'GitLab Get Issue', description: 'Get details of a specific GitLab issue', version: '1.0.0', params: { accessToken: { type: 'string', required: true, visibility: 'user-only', description: 'GitLab Personal Access Token', }, host: { type: 'string', required: false, visibility: 'user-only', description: 'Self-managed GitLab host (e.g. gitlab.example.com). Defaults to gitlab.com.', }, projectId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Project ID or URL-encoded path', }, issueIid: { type: 'number', required: true, visibility: 'user-or-llm', description: 'Issue number within the project (the # shown in GitLab UI)', }, }, request: { url: (params) => { const encodedId = encodeURIComponent(String(params.projectId).trim()) return `${getGitLabApiBase(params.host)}/projects/${encodedId}/issues/${params.issueIid}` }, method: 'GET', headers: (params) => ({ 'PRIVATE-TOKEN': params.accessToken, }), }, transformResponse: async (response) => { if (!response.ok) { const errorText = await response.text() return { success: false, error: `GitLab API error: ${response.status} ${errorText}`, output: {}, } } const issue = await response.json() return { success: true, output: { issue, }, } }, outputs: { issue: { type: 'object', description: 'The GitLab issue details', }, }, }