Claude Server MCP

by davidteren
Verified

save_project_context

Save project-specific context with relationships

Input Schema

NameRequiredDescriptionDefault
contentYesContext content to save
idYesUnique identifier for the context
metadataNoOptional additional metadata
parentContextIdNoOptional ID of parent context
projectIdYesProject identifier
referencesNoOptional related context IDs
tagsNoOptional tags for categorizing

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Context content to save", "type": "string" }, "id": { "description": "Unique identifier for the context", "type": "string" }, "metadata": { "description": "Optional additional metadata", "type": "object" }, "parentContextId": { "description": "Optional ID of parent context", "type": "string" }, "projectId": { "description": "Project identifier", "type": "string" }, "references": { "description": "Optional related context IDs", "items": { "type": "string" }, "type": "array" }, "tags": { "description": "Optional tags for categorizing", "items": { "type": "string" }, "type": "array" } }, "required": [ "id", "projectId", "content" ], "type": "object" }