get_project
Fetch a single project's metadata — name, slug, description, logo, workspaceId, status.
Read-only tool.
Fetch a single project's metadata — name, slug, description, logo, workspaceId, status. Use this to resolve a projectId (from list_my_memberships) into something the human will recognise, or to confirm a project belongs to a specific workspace before acting.
Input
| Property | Type | Required | Description |
|---|---|---|---|
projectId | string | yes | UUID of the project. |
JSON Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"description": "UUID of the project."
}
},
"required": [
"projectId"
],
"additionalProperties": false
}