Notion / warm
Get Page Markdown
Retrieve a page rendered as enhanced markdown. Best body-content tool for agentic retrieval; use get_block_children for structural traversal or unsupported blocks.
Quick Start
aweb inspect notion.get_page_markdown
aweb add notion
aweb plan "use Notion get page markdown in an agent workflow"import Aweb, { Agent } from '@aweb/sdk';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const agent = new Agent({ tools: aweb.tools });
agent.add('notion');
const plan = await agent.plan('Use Notion for this workflow');
const tool = await aweb.tools.inspect('notion.get_page_markdown');
console.log(plan.nextAction);
console.log(tool.inputSchema);Tool Card
Tool idnotion.get_page_markdown
ProviderNotion (notion)
Tool nameget_page_markdown
Activationwarm
Healthhealthy
Trust score1.00
Transportstreamable_http
Latencynot yet measured
Cost0
Requirements and Governance
Authoauth_2_1_pkce
Credentialsetup_required
Workspacerequired
Approvalnone
RiskREAD
Permissionsread_content, update_content, insert_content, read
Credential setup/api/mcp-warehouse/credentials/notion/init
Schemas
{
"type": "object",
"properties": {
"page_id": {
"type": "string",
"description": "Notion page id (UUID). May also accept unknown block ids returned by prior truncated markdown responses."
},
"include_transcript": {
"type": "boolean",
"description": "Whether to include meeting-note transcripts inline. Defaults to false."
}
},
"required": [
"page_id"
],
"additionalProperties": false
}Examples
[
{
"objective": "Use Notion get page markdown in an agent workflow.",
"args": {
"page_id": "<page_id>",
"include_transcript": "<include_transcript>"
}
}
]