MCP Tools
Blueprints

get_community_blueprints

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

Input Schema

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

Output Schema

{
  "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 MarketCore 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.

Scroll to Top