Spaces:
Paused
Paused
File size: 10,818 Bytes
4efde5d | 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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 | import { backendApi } from '@/lib/api-client';
export interface ComposioCategory {
id: string;
name: string;
}
export interface CompositoCategoriesResponse {
success: boolean;
categories: ComposioCategory[];
total: number;
error?: string;
}
export interface ComposioToolkit {
slug: string;
name: string;
description?: string;
logo?: string;
tags: string[];
auth_schemes: string[];
categories: string[];
}
export interface AuthConfigField {
name: string;
displayName: string;
type: string;
description?: string;
required: boolean;
default?: string;
legacy_template_name?: string;
}
export interface AuthConfigDetails {
name: string;
mode: string;
fields: {
[fieldType: string]: {
[requirementLevel: string]: AuthConfigField[];
};
};
}
export interface DetailedComposioToolkit {
slug: string;
name: string;
description?: string;
logo?: string;
tags: string[];
auth_schemes: string[];
categories: string[];
auth_config_details: AuthConfigDetails[];
connected_account_initiation_fields?: {
[requirementLevel: string]: AuthConfigField[];
};
base_url?: string;
}
export interface DetailedComposioToolkitResponse {
success: boolean;
toolkit: DetailedComposioToolkit;
error?: string;
}
export interface ComposioTool {
slug: string;
name: string;
description: string;
version: string;
input_parameters: {
properties: Record<string, any>;
required?: string[];
};
output_parameters: {
properties: Record<string, any>;
};
scopes?: string[];
tags?: string[];
no_auth: boolean;
}
export interface ComposioToolsResponse {
success: boolean;
tools: ComposioTool[];
total_items: number;
current_page: number;
total_pages: number;
next_cursor?: string;
error?: string;
}
export interface ComposioToolkitsResponse {
success: boolean;
toolkits: ComposioToolkit[];
total_items: number;
total_pages: number;
current_page: number;
next_cursor?: string;
has_more: boolean;
error?: string;
}
export interface ComposioProfile {
profile_id: string;
profile_name: string;
display_name: string;
toolkit_slug: string;
toolkit_name: string;
mcp_url: string;
redirect_url?: string;
connected_account_id?: string;
is_connected: boolean;
is_default: boolean;
created_at: string;
}
export interface ComposioProfilesResponse {
success: boolean;
profiles: ComposioProfile[];
error?: string;
}
export interface CreateComposioProfileRequest {
toolkit_slug: string;
profile_name: string;
display_name?: string;
user_id?: string;
mcp_server_name?: string;
is_default?: boolean;
initiation_fields?: Record<string, string>;
}
export interface CreateComposioProfileResponse {
success: boolean;
profile_id: string;
redirect_url?: string;
mcp_url: string;
error?: string;
}
export interface ComposioMcpConfigResponse {
success: boolean;
mcp_config: {
name: string;
type: string;
mcp_qualified_name: string;
toolkit_slug: string;
config: {
profile_id: string;
};
enabledTools: string[];
};
error?: string;
}
export interface ComposioProfileSummary {
profile_id: string;
profile_name: string;
display_name: string;
toolkit_slug: string;
toolkit_name: string;
is_connected: boolean;
is_default: boolean;
created_at: string;
has_mcp_url: boolean;
}
export interface ComposioToolkitGroup {
toolkit_slug: string;
toolkit_name: string;
icon_url?: string;
profiles: ComposioProfileSummary[];
}
export interface ComposioCredentialsResponse {
success: boolean;
toolkits: ComposioToolkitGroup[];
total_profiles: number;
}
export interface ComposioMcpUrlResponse {
success: boolean;
mcp_url: string;
profile_name: string;
toolkit_name: string;
warning: string;
}
export interface DeleteProfileResponse {
message: string;
}
export interface BulkDeleteProfilesRequest {
profile_ids: string[];
}
export interface BulkDeleteProfilesResponse {
success: boolean;
deleted_count: number;
failed_profiles: string[];
message: string;
}
export const composioApi = {
async getCategories(): Promise<CompositoCategoriesResponse> {
const result = await backendApi.get<CompositoCategoriesResponse>(
'/composio/categories',
{
errorContext: { operation: 'load categories', resource: 'Composio categories' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to get categories');
}
return result.data!;
},
async getToolkits(search?: string, category?: string, cursor?: string): Promise<ComposioToolkitsResponse> {
const params = new URLSearchParams();
if (search) {
params.append('search', search);
}
if (category) {
params.append('category', category);
}
if (cursor) {
params.append('cursor', cursor);
}
const result = await backendApi.get<ComposioToolkitsResponse>(
`/composio/toolkits${params.toString() ? `?${params.toString()}` : ''}`,
{
errorContext: { operation: 'load toolkits', resource: 'Composio toolkits' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to get toolkits');
}
return result.data!;
},
async getProfiles(params?: { toolkit_slug?: string; is_active?: boolean }): Promise<ComposioProfile[]> {
const queryParams = new URLSearchParams();
if (params?.toolkit_slug) {
queryParams.append('toolkit_slug', params.toolkit_slug);
}
if (params?.is_active !== undefined) {
queryParams.append('is_active', params.is_active.toString());
}
const result = await backendApi.get<ComposioProfilesResponse>(
`/composio/profiles${queryParams.toString() ? `?${queryParams.toString()}` : ''}`,
{
errorContext: { operation: 'load profiles', resource: 'Composio profiles' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to get profiles');
}
return result.data!.profiles;
},
async createProfile(request: CreateComposioProfileRequest): Promise<CreateComposioProfileResponse> {
const result = await backendApi.post<CreateComposioProfileResponse>(
'/composio/profiles',
request,
{
errorContext: { operation: 'create profile', resource: 'Composio profile' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to create profile');
}
return result.data!;
},
async getMcpConfigForProfile(profileId: string): Promise<ComposioMcpConfigResponse> {
const result = await backendApi.get<ComposioMcpConfigResponse>(
`/composio/profiles/${profileId}/mcp-config`,
{
errorContext: { operation: 'get MCP config', resource: 'Composio profile MCP config' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to get MCP config');
}
return result.data!;
},
async discoverTools(profileId: string): Promise<{ success: boolean; tools: any[]; toolkit_name: string; total_tools: number }> {
const result = await backendApi.post<{ success: boolean; tools: any[]; toolkit_name: string; total_tools: number }>(
`/composio/discover-tools/${profileId}`,
{},
{
errorContext: { operation: 'discover tools', resource: 'Composio profile tools' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to discover tools');
}
return result.data!;
},
async getCredentialsProfiles(): Promise<ComposioToolkitGroup[]> {
const response = await backendApi.get<ComposioCredentialsResponse>('/secure-mcp/composio-profiles');
return response.data.toolkits;
},
async getMcpUrl(profileId: string): Promise<ComposioMcpUrlResponse> {
const response = await backendApi.get<ComposioMcpUrlResponse>(`/secure-mcp/composio-profiles/${profileId}/mcp-url`);
return response.data;
},
async getToolkitIcon(toolkitSlug: string): Promise<{ success: boolean; icon_url?: string }> {
const response = await backendApi.get<{ success: boolean; toolkit_slug: string; icon_url?: string; message?: string }>(`/composio/toolkits/${toolkitSlug}/icon`);
return {
success: response.data.success,
icon_url: response.data.icon_url
};
},
async getToolkitDetails(toolkitSlug: string): Promise<DetailedComposioToolkitResponse> {
const result = await backendApi.get<DetailedComposioToolkitResponse>(
`/composio/toolkits/${toolkitSlug}/details`,
{
errorContext: { operation: 'get toolkit details', resource: 'Composio toolkit details' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to get toolkit details');
}
return result.data!;
},
async getTools(toolkitSlug: string, limit: number = 50): Promise<ComposioToolsResponse> {
const result = await backendApi.post<ComposioToolsResponse>(
`/composio/tools/list`,
{
toolkit_slug: toolkitSlug,
limit
},
{
errorContext: { operation: 'get tools', resource: 'Composio tools' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to get tools');
}
return result.data!;
},
async deleteProfile(profileId: string): Promise<DeleteProfileResponse> {
const result = await backendApi.delete<DeleteProfileResponse>(
`/secure-mcp/credential-profiles/${profileId}`,
{
errorContext: { operation: 'delete profile', resource: 'Composio profile' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to delete profile');
}
return result.data!;
},
async bulkDeleteProfiles(profileIds: string[]): Promise<BulkDeleteProfilesResponse> {
const result = await backendApi.post<BulkDeleteProfilesResponse>(
'/secure-mcp/credential-profiles/bulk-delete',
{ profile_ids: profileIds },
{
errorContext: { operation: 'bulk delete profiles', resource: 'Composio profiles' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to bulk delete profiles');
}
return result.data!;
},
async setDefaultProfile(profileId: string): Promise<{ message: string }> {
const result = await backendApi.put<{ message: string }>(
`/secure-mcp/credential-profiles/${profileId}/set-default`,
{},
{
errorContext: { operation: 'set default profile', resource: 'Composio profile' },
}
);
if (!result.success) {
throw new Error(result.error?.message || 'Failed to set default profile');
}
return result.data!;
},
}; |