atlas-mcp-server

by cyanheads
Verified

project_delete

Delete projects and their associated data from the system. Supports both single project deletion and bulk operations for multiple projects.

Input Schema

NameRequiredDescriptionDefault
modeYes'single' for one project, 'bulk' for multiple projects.
projectIdNoRequired for single mode: Project ID to delete (must start with 'proj_').
projectIdsNoRequired for bulk mode: Array of 1-100 project IDs to delete.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "mode": { "description": "'single' for one project, 'bulk' for multiple projects.", "enum": [ "single", "bulk" ], "type": "string" }, "projectId": { "description": "Required for single mode: Project ID to delete (must start with 'proj_').", "type": "string" }, "projectIds": { "description": "Required for bulk mode: Array of 1-100 project IDs to delete.", "items": { "type": "string" }, "maxItems": 100, "minItems": 1, "type": "array" } }, "required": [ "mode" ], "type": "object" }