import type { GoogleGroupsGetParams, GoogleGroupsResponse } from '@/tools/google_groups/types' import type { ToolConfig } from '@/tools/types' export const getGroupTool: ToolConfig = { id: 'google_groups_get_group', name: 'Google Groups Get Group', description: 'Get details of a specific Google Group by email or group ID', version: '1.0.0', oauth: { required: true, provider: 'google-groups', }, params: { accessToken: { type: 'string', required: true, visibility: 'hidden', description: 'OAuth access token', }, groupKey: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Group identifier. Can be the group email address (e.g., team@example.com) or the unique group ID', }, }, request: { url: (params) => { const encodedGroupKey = encodeURIComponent(params.groupKey) return `https://admin.googleapis.com/admin/directory/v1/groups/${encodedGroupKey}` }, method: 'GET', headers: (params) => ({ Authorization: `Bearer ${params.accessToken}`, 'Content-Type': 'application/json', }), }, transformResponse: async (response) => { const data = await response.json() if (!response.ok) { throw new Error(data.error?.message || 'Failed to get group') } return { success: true, output: { group: data }, } }, outputs: { group: { type: 'json', description: 'Group object' }, }, }