create_document
Generate and store a document in a specific vault by providing the project ID, vault ID, title, and HTML content using the Basecamp MCP Server tool.
Instructions
Create a document in a vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Document HTML content | |
project_id | Yes | Project ID | |
title | Yes | Document title | |
vault_id | Yes | Vault ID |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Document HTML content",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"title": {
"description": "Document title",
"type": "string"
},
"vault_id": {
"description": "Vault ID",
"type": "string"
}
},
"required": [
"project_id",
"vault_id",
"title",
"content"
],
"type": "object"
}