get_blueprint
Retrieve the full details of a specific blueprint by its UUID, including content, AI-generated analysis, and metadata.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
blueprint_uuid | string (uuid) | Yes | — | UUID of the blueprint to retrieve |
Input Schema
{
"type": "object",
"required": [
"blueprint_uuid"
],
"properties": {
"blueprint_uuid": {
"type": "string",
"format": "uuid",
"description": "UUID of the blueprint to retrieve"
}
}
}Output Schema
{
"type": "object",
"required": [
"blueprint_uuid",
"name"
],
"properties": {
"name": {
"type": "string"
},
"summary": {
"type": "string"
},
"web_url": {
"type": "string"
},
"category": {
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
}
},
"created_at": {
"type": "integer"
},
"blueprint_dna": {
"type": "string"
},
"blueprint_uuid": {
"type": "string",
"format": "uuid"
},
"source_content": {
"type": "string"
},
"team_visibility": {
"type": "string"
},
"reference_content": {
"type": "string"
},
"input_instructions": {
"type": "string"
},
"exchange_visibility": {
"type": "string"
}
}
}Instructions
Retrieve the full details of a specific blueprint by its UUID. Returns the blueprint's content, AI-generated analysis, and metadata.
Use get_blueprints to list all available blueprints and find the blueprint_uuid.