get_project
Retrieve detailed information about a specific project by providing its unique ID and associated workspace ID within the Clockify MCP Server.
Instructions
Get a specific project by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "Project ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"projectId"
],
"type": "object"
}