update_document
Modify Basecamp 3 documents by updating titles and HTML content using project and document IDs for precise file management within the Basecamp MCP Server.
Instructions
Update a document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | New HTML content | |
document_id | Yes | Document ID | |
project_id | Yes | Project ID | |
title | No | New title |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "New HTML content",
"type": "string"
},
"document_id": {
"description": "Document ID",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"title": {
"description": "New title",
"type": "string"
}
},
"required": [
"project_id",
"document_id"
],
"type": "object"
}