create-project
Set up a new project or workspace by specifying its name and optional details using the Model Context Protocol on the Opik MCP Server.
Instructions
Create a new project/workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the project | |
name | Yes | Name of the project | |
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": "Description of the project",
"type": "string"
},
"name": {
"description": "Name of the project",
"type": "string"
},
"workspaceName": {
"description": "Workspace name to use instead of the default",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}