update-project
Modify project details like name, description, or workspace in the Opik MCP Server by specifying the project ID and updated attributes for improved project management.
Instructions
Update a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | New project description | |
name | No | New project name | |
projectId | Yes | ID of the project to update | |
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": {
"description": {
"description": "New project description",
"type": "string"
},
"name": {
"description": "New project name",
"type": "string"
},
"projectId": {
"description": "ID of the project to update",
"type": "string"
},
"workspaceName": {
"description": "Workspace name to use instead of the default",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}