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
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | — | Descriptive name for the context item |
content | string | Yes | — | The reference content to store |
collection_id | integer | No | — | Collection ID from get_context_collections |
project_id | string (uuid) | No | — | Project 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:
- Provide a descriptive
name. - Provide the
content(brand guidelines, company info, product details, personas, research, etc.). - Optionally get
collection_idfromget_context_collectionsto organize into a collection. - Optionally provide
project_idto associate with a project.
Use context items for: brand voice guidelines, company facts, product descriptions, audience personas, competitive intelligence.