import_community_blueprint
Import a blueprint from the MarketCore community exchange into your team's library. Once imported, use it like any of your own blueprints to generate deliverables.
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",
"properties": {
"id": {
"type": "integer",
"description": "Blueprint record ID"
},
"name": {
"type": "string"
},
"uuid": {
"type": "string",
"format": "uuid",
"description": "Unique identifier — use as blueprint_uuid in create_deliverable_from_blueprint"
},
"content": {
"type": "string"
},
"created_at": {
"type": "integer"
},
"team_visibility": {
"type": "string"
},
"imported_exchange_id": {
"type": "string",
"format": "uuid"
}
}
}Instructions
Use this tool to import a blueprint from the MarketCore community exchange into your team's library. Once imported, use it like any of your own blueprints to generate deliverables.
Workflow:
- Use
get_community_blueprintsto browse and find a blueprint. - Copy the
blueprint_exchange_id. - Call this tool to import it.
- Use
get_blueprintsto confirm it appears in your library. - Use
create_deliverable_from_blueprintwith the returneduuidto generate content.