deleteProject
Remove a specific project from the DeepWriter MCP Server by providing the project ID and API key for secure deletion.
Instructions
Delete a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | Yes | The DeepWriter API key for authentication. | |
project_id | Yes | The ID of the project to delete. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "The DeepWriter API key for authentication.",
"type": "string"
},
"project_id": {
"description": "The ID of the project to delete.",
"type": "string"
}
},
"required": [
"api_key",
"project_id"
],
"type": "object"
}