All tools
ToolRead

List library artifacts

list_library_artifacts

You need to discover, read, validate, create, or attach Prism visual artifacts.

When to use it

You need to discover, read, validate, create, or attach Prism visual artifacts.

Typical workflow

Plan, generate externally, validate, then create or attach.

What it returns

Artifact metadata, specs, validation results, save guidance, or embeds.

Avoid using it when

You are trying to preview live output through MCP; render externally first.

Advanced input contract

Agent hosts use this JSON Schema to validate the exact input shape.

View full registry notes

List saved Prism visual artifacts in accessible library folders. Use folderId to narrow to one folder, or query to find artifacts by title or description. Returns metadata, artifact type, description, and a direct Prism artifact URL; call get_library_artifact for the full saved spec. Use sort=updated to revisit recent changes and nextCursor to load another page.

View JSON Schema
{
  "type": "object",
  "properties": {
    "cursor": {
      "type": "integer",
      "minimum": 0,
      "default": 0
    },
    "sort": {
      "type": "string",
      "enum": [
        "created",
        "updated",
        "title"
      ],
      "default": "created"
    },
    "folderId": {
      "type": "string",
      "format": "uuid"
    },
    "query": {
      "type": "string",
      "minLength": 1,
      "maxLength": 120,
      "description": "Optional case-insensitive search across artifact title and description."
    },
    "artifactType": {
      "type": "string",
      "enum": [
        "chart",
        "table",
        "metric_card",
        "markdown",
        "react",
        "html",
        "spreadsheet",
        "presentation"
      ]
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50,
      "default": 25
    }
  },
  "additionalProperties": false
}

Useful next tools