Get Project status
get_project_statusYou need the user's accessible workspace map or a compact context pack.
When to use it
You need the user's accessible workspace map or a compact context pack.
Orient first, then choose the smallest task-specific tool.
Workspace availability, recent objects, tool routing, or query-focused context.
Avoid using it when
You already have the exact source, draft, post, artifact, or portfolio id.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Read opt-in aggregate status for imports, indexing, knowledge health, research-brief freshness, research, recorded quota/admission budgets, capability constraints, and this MCP client's Project Agent runs in one authorized Prism Project. Budget values report limits and admission state, not money or future cost. Use get_project_jobs for resumable handles and next-action guidance. This returns counts only, never source content, prompts, or agent answers.
View JSON Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"format": "uuid"
},
"sections": {
"type": "array",
"items": {
"type": "string",
"enum": [
"imports",
"indexing",
"research",
"agents",
"knowledge",
"brief",
"budgets",
"capabilities"
]
},
"minItems": 1,
"maxItems": 8,
"description": "Operational areas to include. Omit to return every available aggregate."
}
},
"required": [
"projectId"
],
"additionalProperties": false
}