MCP Tools
Context & Resources

list_context_collections

List all context collections you can access. Collections group reference materials; use a collection's ID to add items to it or to target context retrieval.

Input Schema

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

Output Schema

{
  "type": "object",
  "required": [
    "collections"
  ],
  "properties": {
    "collections": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "name"
        ],
        "properties": {
          "id": {
            "type": "integer",
            "description": "Collection ID. Pass to add_context or get_relevant_context."
          },
          "name": {
            "type": "string",
            "description": "Collection name."
          },
          "link_url": {
            "type": "string",
            "description": "URL to view this collection in the Marcora web app."
          },
          "is_private": {
            "type": "boolean",
            "description": "Whether this collection is private to the creator."
          },
          "item_count": {
            "type": "integer",
            "description": "Number of context items in this collection."
          },
          "description": {
            "type": "string",
            "description": "Collection description."
          }
        }
      }
    }
  }
}

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.

Parameters: none — this tool takes no input.

Links: present link_url to the user exactly as returned — copy it character for character. Never retype, shorten, or rebuild a link or the IDs inside it.

Scroll to Top