quip_create_document
Generate a new Quip document with a specified title and markdown content using the Quip MCP Server, enabling AI assistants to create and manage documents efficiently.
Instructions
Create a new Quip document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Initial markdown content for the document | |
title | Yes | Title of the new document |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Initial markdown content for the document",
"type": "string"
},
"title": {
"description": "Title of the new document",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}