coda_get_page_content
Retrieve the content of a specific page in markdown format from a Coda document using its document ID and page identifier. Integrates with the Coda MCP Server for streamlined document interactions.
Instructions
Get the content of a page as markdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docId | Yes | The ID of the document that contains the page to get the content of | |
pageIdOrName | Yes | The ID or name of the page to get the content of |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"docId": {
"description": "The ID of the document that contains the page to get the content of",
"type": "string"
},
"pageIdOrName": {
"description": "The ID or name of the page to get the content of",
"type": "string"
}
},
"required": [
"docId",
"pageIdOrName"
],
"type": "object"
}