MCP Tools
Context & Resources

list_context_collections

Returns all context collections accessible to the current user. Collections organize reference materials (context items) that inform AI-generated content.

Input Schema

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

Output Schema

{
  "type": "object",
  "required": [
    "collections"
  ],
  "properties": {
    "collections": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "name",
          "link_url"
        ],
        "properties": {
          "id": {
            "type": "integer",
            "description": "Collection ID. Pass to add_context or get_relevant_context."
          },
          "name": {
            "type": "string"
          },
          "link_url": {
            "type": "string",
            "format": "uri",
            "description": "Direct URL to view this collection in the Marcora app."
          },
          "is_private": {
            "type": "boolean"
          },
          "item_count": {
            "type": "integer"
          },
          "description": {
            "type": "string"
          }
        }
      }
    }
  }
}

Instructions

Returns all context collections accessible to the current user. Collections organize reference materials (context items) that inform AI-generated content.

Use the id with add_context to add items to a specific collection, or pass collection_ids to get_relevant_context for targeted context retrieval.

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

Scroll to Top