get_community_blueprint_details
Get the full details for a specific community blueprint, including complete content, content description/style guide, and contributor information.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
blueprint_exchange_id | string (uuid) | No | — | Blueprint exchange ID from get_community_blueprints |
Input Schema
{
"type": "object",
"properties": {
"blueprint_exchange_id": {
"type": "string",
"format": "uuid",
"description": "Blueprint exchange ID from get_community_blueprints"
}
}
}Output Schema
{
"type": "object",
"required": [
"id",
"name",
"content"
],
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Blueprint exchange ID. Pass to import_community_blueprint."
},
"name": {
"type": "string"
},
"slug": {
"type": "string"
},
"content": {
"type": "string",
"description": "Full example document content in markdown"
},
"summary": {
"type": "string"
},
"visibility": {
"type": "string"
},
"is_featured": {
"type": "boolean"
},
"contributor_name": {
"type": "string"
},
"input_instructions": {
"type": "string"
},
"content_description": {
"type": "string",
"description": "Template structure and style guidelines"
},
"contributor_company": {
"type": "string"
},
"contributor_job_title": {
"type": "string"
},
"suggested_content_type": {
"type": "string"
}
}
}Instructions
Get the full details for a specific community blueprint, including its complete content (markdown), content description/style guide, and contributor information.
Use the id (blueprint_exchange_id) returned by get_community_blueprints. The content field contains the full example document in markdown. The content_description describes the template structure and style guidelines.
Pass the id to import_community_blueprint to add this blueprint to the current team.