delete-project
Remove a specific project by providing its ID using the Opik MCP Server, ensuring precise project management and workspace organization.
Instructions
Delete a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | ID of the project to delete | |
workspaceName | No | Workspace name to use instead of the default |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "ID of the project to delete",
"type": "string"
},
"workspaceName": {
"description": "Workspace name to use instead of the default",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}