Notion Integration
Access your Notion databases and pages directly in your workflow.
Overview
The Notion integration enables your AI to interact with your Notion workspace, allowing you to search content, create and update pages, retrieve page details, and query databases—all without leaving your AI interface.
Before using Notion tools, you need to connect your Notion account through the Skeet dashboard.
Authentication
To use Notion with Skeet, you first need to authenticate:
- Connect your Notion account in the Skeet dashboard
- Ensure your AI is connected to Skeet with your MCP key
- Verify your connection:
List my skeet integrations
Searching Content
Search across all your Notion content to find pages, databases, and more.
Search my Notion workspace for "project roadmap"
The AI will use the notion_search
tool with the following parameters:
{
"query": "Search query text",
"sort": {
"direction": "descending",
"timestamp": "last_edited_time"
},
"page_size": 10
}
The search tool is powerful for finding content when you don't know the exact page ID.
Creating Pages
Create new pages in your Notion workspace. You can create pages as children of existing pages or within databases.
Create a new Notion page titled "Project Ideas" with a list of my brainstormed ideas
The AI will use the notion_create_page
tool with these parameters:
{
"parent": {
"page_id": "Parent page ID"
},
"properties": {
"title": [{
"text": {
"content": "Page title"
}
}]
},
"children": [
{
"object": "block",
"type": "paragraph",
"paragraph": {
"rich_text": [{
"text": {
"content": "Page content"
}
}]
}
}
],
"emoji": "📝"
}
Updating Pages
Update existing pages by modifying their properties or content.
Update my "Weekly Goals" Notion page to add a new goal about completing the API documentation
The AI will use the notion_update_page
tool with parameters like:
{
"page_id": "Page ID",
"properties": {
"title": [{
"text": {
"content": "Updated title"
}
}],
"Status": {
"select": {
"name": "Completed"
}
}
},
"emoji": "✅"
}
Retrieving Pages
Get detailed information about a specific Notion page.
Show me the content of my "Product Roadmap" Notion page
The AI will use the notion_retrieve_page
tool:
{
"page_id": "Page ID to retrieve"
}
You'll need the page ID to retrieve specific pages. Use the search tool first if you don't know the ID.
Querying Databases
Query databases to find and filter entries based on various criteria.
Show me all tasks in my Projects database with "High" priority
The AI will use the notion_query_database
tool:
{
"database_id": "Database ID",
"filter": {
"property": "Priority",
"select": {
"equals": "High"
}
},
"sorts": [
{
"property": "Due Date",
"direction": "ascending"
}
],
"page_size": 10
}
Filters and sorts need to match the properties available in your database schema.
What's next?
Now that you've connected Notion, explore other integrations to make your AI even more powerful.
Integrations
Sequential Thinking
Enable dynamic and reflective problem-solving through structured thinking steps.