import { z } from 'zod';
import { PostmanAPIClient } from '../clients/postman.js';
import {
IsomorphicHeaders,
McpError,
ErrorCode,
CallToolResult,
} from '@modelcontextprotocol/sdk/types.js';
function asMcpError(error: unknown): McpError {
const cause = (error as any)?.cause ?? String(error);
return new McpError(ErrorCode.InternalError, cause);
}
export const method = 'deleteCollection';
export const description = 'Deletes a collection.';
export const parameters = z.object({
collectionId: z
.string()
.describe(
'The collection ID must be in the form <OWNER_ID>-<UUID> (e.g. 12345-33823532ab9e41c9b6fd12d0fd459b8b).'
),
});
export const annotations = {
title: 'Deletes a collection.',
readOnlyHint: false,
destructiveHint: true,
idempotentHint: true,
};
export async function handler(
args: z.infer<typeof parameters>,
extra: { client: PostmanAPIClient; headers?: IsomorphicHeaders }
): Promise<CallToolResult> {
try {
const endpoint = `/collections/${args.collectionId}`;
const query = new URLSearchParams();
const url = query.toString() ? `${endpoint}?${query.toString()}` : endpoint;
const options: any = {
headers: extra.headers,
};
const result = await extra.client.delete(url, options);
return {
content: [
{
type: 'text',
text: `${typeof result === 'string' ? result : JSON.stringify(result, null, 2)}`,
},
],
};
} catch (e: unknown) {
if (e instanceof McpError) {
throw e;
}
throw asMcpError(e);
}
}