Notion / warm

Get Block

Retrieve a single Notion block by id. Useful for structural inspection and deciding whether nested children need to be traversed.

Quick Start

aweb inspect notion.get_block
aweb add notion
aweb plan "use Notion get block 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_block');

console.log(plan.nextAction);
console.log(tool.inputSchema);

Tool Card

Tool idnotion.get_block
ProviderNotion (notion)
Tool nameget_block
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": {
    "block_id": {
      "type": "string",
      "description": "Notion block id (UUID)"
    }
  },
  "required": [
    "block_id"
  ],
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Notion get block in an agent workflow.",
    "args": {
      "block_id": "<block_id>"
    }
  }
]
Back to MCP Tool Cards