MCP Tools
Blueprints

list_community_blueprints

Browse community blueprints available for import. Returns blueprints shared by Marcora users, including name, summary, contributor info, and category.

Input Schema

{
  "type": "object",
  "properties": {}
}

Output Schema

{
  "type": "object",
  "required": [
    "community_blueprints"
  ],
  "properties": {
    "community_blueprints": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "name",
          "summary"
        ],
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Blueprint exchange ID. Pass to get_community_blueprint_details or import_community_blueprint."
          },
          "name": {
            "type": "string"
          },
          "slug": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "visibility": {
            "type": "string"
          },
          "is_featured": {
            "type": "boolean"
          },
          "category_short": {
            "type": "string"
          },
          "contributor_name": {
            "type": "string"
          },
          "input_instructions": {
            "type": "string"
          },
          "contributor_company": {
            "type": "string"
          }
        }
      }
    }
  }
}

Instructions

Browse community blueprints available for import. Returns a list of blueprints shared by Marcora users, including name, summary, contributor info, and category.

Use the returned id with get_community_blueprint_details to view the full blueprint content before importing.

Clients that previously read the bare array must now read response.community_blueprints.

Scroll to Top