All tools
ToolRead

Get published posts

get_published_posts

You need metadata or evidence status for already posted Prism articles.

When to use it

You need metadata or evidence status for already posted Prism articles.

Typical workflow

Filter posts first, then inspect evidence health for a selected post.

What it returns

Published post metadata, compact excerpts, and evidence-health summaries.

Avoid using it when

You need full draft bodies or to update a published post.

Advanced input contract

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

View JSON Schema
{
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "description": "Search title, subtitle, excerpt, slug, or linked ticker."
    },
    "status": {
      "type": "string",
      "enum": [
        "published",
        "scheduled",
        "draft",
        "all"
      ],
      "default": "published"
    },
    "visibility": {
      "type": "string",
      "enum": [
        "public",
        "private",
        "community",
        "unlisted",
        "all"
      ],
      "default": "all"
    },
    "linkedTicker": {
      "type": "string",
      "description": "Ticker symbol to filter by, normalized to uppercase."
    },
    "linkedCompanyId": {
      "type": "string",
      "format": "uuid"
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "default": 25
    },
    "sort": {
      "type": "string",
      "enum": [
        "updated_desc",
        "published_desc",
        "published_asc",
        "title_asc"
      ],
      "default": "updated_desc"
    }
  },
  "additionalProperties": false
}

Useful next tools