Tool reference
Resources
MCP resources for loading agent and blueprint context.
Tools are for doing — create, update, delete. Resources are for reading — load a piece of data into your AI assistant's context so it can reason about it without a tool call.
The Debriefer MCP server exposes two resource types.
| URI pattern | Description |
|---|---|
debriefer://agents/{id} | Load an agent's config (techniques, tone, model) as context. |
debriefer://blueprints/{id} | Load a blueprint with its full graph as context. |
Load an agent
Say this to Claude Desktop
Load agent agt_7f3a as context. What interview techniques is it configured to use?
Your assistant attaches the agent config to the conversation, then answers without another round trip.
Load a blueprint
Say this to Claude Desktop
Load blueprint bp_7f3a_abc as context. List the questions in order.
Useful before editing a blueprint by conversation — your assistant refers to nodes by number because it has the whole graph in context.
When to use a resource vs. a tool
- Use a resource when you want the assistant to reason over a config or blueprint.
- Use a tool (like
get_blueprint) when you want the assistant to return the object to you, or chain it into another operation.