MCP Tools
Context & Resources

create_context_collection

Create a new context collection to organize your reference materials. Collections group related context items together for easier management and targeted retrieval.

Parameters

NameTypeRequiredDefaultDescription
namestringYesA descriptive name for the collection
descriptionstringYesA short description of what this collection contains
is_privatebooleanYesfalseIf true, only you can see this collection. If false, all team members can access it.

Input Schema

{
  "type": "object",
  "required": [
    "name",
    "description",
    "is_private"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "A descriptive name for the collection"
    },
    "is_private": {
      "type": "boolean",
      "description": "If true, only you can see this collection. If false, all team members can access it."
    },
    "description": {
      "type": "string",
      "description": "A short description of what this collection contains"
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Collection ID. Pass this as collection_id to add_context to add items to this collection."
    },
    "name": {
      "type": "string",
      "description": "Collection name."
    },
    "link_url": {
      "type": "string",
      "format": "uri",
      "description": "Direct URL to view this collection in the MarketCore app."
    },
    "created_at": {
      "type": "integer",
      "description": "Unix timestamp of creation."
    },
    "is_private": {
      "type": "boolean",
      "description": "Whether this collection is private to the creator."
    },
    "description": {
      "type": "string",
      "description": "Collection description."
    }
  }
}

Instructions

Create a new context collection to organize your reference materials.

Parameters:

  • name: A descriptive name for the collection (e.g., "Brand Guidelines", "Product Research Q2")
  • description: A short description of what this collection contains
  • is_private: If true, only you can see this collection. If false, all team members can access it.

After creating a collection, use the returned id with the add_context tool (pass it as collection_id) to add context items to this collection. You can also use list_context_collections to see all existing collections and their IDs.

Scroll to Top