MCP Tools
Blueprints

get_blueprint

Retrieve the full details of a specific blueprint by its UUID, including content, AI-generated analysis, and metadata.

Parameters

NameTypeRequiredDefaultDescription
blueprint_uuidstring (uuid)YesUUID 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.

Scroll to Top