Notion / warm
Get Data Source
Retrieve a Notion data source schema. This is the modern schema-aware surface for databases and should power agentic database modeling.
Quick Start
aweb inspect notion.get_data_source
aweb add notion
aweb plan "use Notion get data source 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_data_source');
console.log(plan.nextAction);
console.log(tool.inputSchema);Tool Card
Tool idnotion.get_data_source
ProviderNotion (notion)
Tool nameget_data_source
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": {
"data_source_id": {
"type": "string",
"description": "Notion data source id (UUID)"
}
},
"required": [
"data_source_id"
],
"additionalProperties": false
}Examples
[
{
"objective": "Use Notion get data source in an agent workflow.",
"args": {
"data_source_id": "<data_source_id>"
}
}
]