MCP Tools
Blueprints

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

NameTypeRequiredDefaultDescription
blueprint_exchange_idstring (uuid)NoBlueprint 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:

  1. Use get_community_blueprints to browse and find a blueprint.
  2. Copy the blueprint_exchange_id.
  3. Call this tool to import it.
  4. Use get_blueprints to confirm it appears in your library.
  5. Use create_deliverable_from_blueprint with the returned uuid to generate content.
Scroll to Top