list_knowledge_sources | Pendium MCP Docs | Pendium.ai
Pendium MCP Docs

list_knowledge_sources

List all knowledge sources for a brand — website pages, uploaded documents, and training materials.

List all knowledge sources for a brand — website pages, uploaded documents, and training materials. Shows what content has been ingested into the brand's knowledge base.

Use query_knowledge to search across these sources semantically.

Authentication: Required

Parameters

ParameterTypeRequiredDescription
syntheticIdintegerYesThe agent ID to list knowledge sources for.

Response

{
  "syntheticId": 1234,
  "brandName": "Example",
  "sourceCount": 12,
  "sources": [
    {
      "id": "src-1",
      "type": "webpage",
      "origin": "https://example.com/about",
      "status": "completed",
      "contentPreview": "Example Inc. was founded in 2024 with a mission to make AI visibility...",
      "createdAt": "2026-03-01T08:00:00Z"
    },
    {
      "id": "src-2",
      "type": "document",
      "origin": "product-overview.pdf",
      "status": "completed",
      "contentPreview": "Product Overview: Example's AI Visibility Platform provides...",
      "createdAt": "2026-03-05T14:00:00Z"
    }
  ]
}

Key fields

FieldDescription
sourceCountTotal number of ingested sources
sources[].typeSource type: "webpage", "document", "training"
sources[].originURL or filename of the original source
sources[].statusIngestion status: "completed", "processing", "failed"
sources[].contentPreviewFirst 200 characters of the source content

On this page