MCP Tools
Context & Resources

add_context

Add a new context item to your reference library. Context items are reference materials that power AI generation — they help the AI produce more accurate, on-brand, and relevant content.

Parameters

NameTypeRequiredDefaultDescription
namestringYesDescriptive name for the context item
contentstringYesThe reference content to store
collection_idintegerNoCollection ID from get_context_collections
project_idstring (uuid)NoProject ID to associate with

Input Schema

{
  "type": "object",
  "required": [
    "name",
    "content"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Descriptive name for the context item"
    },
    "content": {
      "type": "string",
      "description": "The reference content to store"
    },
    "project_id": {
      "type": "string",
      "format": "uuid",
      "description": "Project ID to associate with"
    },
    "collection_id": {
      "type": "integer",
      "description": "Collection ID to organize the item (from get_context_collections)"
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Context item ID"
    },
    "name": {
      "type": "string",
      "description": "Context item name"
    },
    "content": {
      "type": "string",
      "description": "The stored reference content"
    },
    "created_at": {
      "type": "integer",
      "description": "Unix timestamp of creation"
    },
    "project_id": {
      "type": "string",
      "format": "uuid",
      "description": "Project association (if assigned)"
    },
    "word_count": {
      "type": "integer",
      "description": "Word count of content"
    },
    "collection_id": {
      "type": "integer",
      "description": "Collection this item belongs to (if assigned)"
    }
  }
}

Instructions

Use this tool to add a new context item to your reference library.

Workflow:

  1. Provide a descriptive name.
  2. Provide the content (brand guidelines, company info, product details, personas, research, etc.).
  3. Optionally get collection_id from get_context_collections to organize into a collection.
  4. Optionally provide project_id to associate with a project.

Use context items for: brand voice guidelines, company facts, product descriptions, audience personas, competitive intelligence.

Scroll to Top