All tools
ToolRead
Verify Prism host capabilities
verify_prism_host_capabilitiesCheck which authorized Prism actions the connected AI host can actually call before relying on them.
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 JSON Schema
{
"type": "object",
"properties": {
"hostKey": {
"type": "string",
"default": "default"
},
"hostName": {
"type": "string"
},
"hostCatalogRevision": {
"type": "string"
},
"callableTools": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"callableTools"
],
"additionalProperties": false
}