get-project-by-id
Retrieve a specific project by its unique ID from the Opik MCP Server. Input the project ID and optionally specify a workspace name for targeted access.
Instructions
Get a single project by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | ID of the project to fetch | |
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 fetch",
"type": "string"
},
"workspaceName": {
"description": "Workspace name to use instead of the default",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}