All tools
ToolRead
Get Project jobs
get_project_jobsYou 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.
Typical workflow
Orient first, then choose the smallest task-specific tool.
What it returns
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
List recent import, indexing, RSS refresh, research, and this MCP client's Project Agent job handles for one authorized Prism Project. Every handle includes per-kind retry and cancellation guidance plus whether to poll again or hand the issue back to the user. Results omit source bodies, prompts, and answers.
View JSON Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"format": "uuid"
},
"kinds": {
"type": "array",
"items": {
"type": "string",
"enum": [
"import",
"indexing",
"research",
"agent",
"rss"
]
},
"minItems": 1,
"maxItems": 5
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
},
"cursor": {
"type": "string",
"description": "Opaque nextCursor from a previous page."
}
},
"required": [
"projectId"
],
"additionalProperties": false
}