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.

Authentication

To use Notion with Skeet, you first need to authenticate:

  1. Connect your Notion account in the Skeet dashboard
  2. Ensure your AI is connected to Skeet with your MCP key
  3. Verify your connection:
COMMAND
Verify Notion 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
}

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"
}

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
}

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.

Read more

Memory

Access your Memory directly in your workflow.

Read more

Linear

Get issue details, create issues, add updates to issues, and more.

Read more

Github

Access your repositories, PRs, and issues directly in your workflow.

Read more

Slack

Send updates to your team in Slack about issues and PRs.

Read more

Jira

Access your Jira issues and projects directly in your workflow.

Read more

Postgres

Access your Postgres databases directly in your workflow.

Read more

Sequential Thinking

Break down complex problems into manageable steps.

Read more

Notion

Access your Notion databases directly in your workflow.

Read more

MySQL

Access your MySQL databases directly in your workflow.

Read more

Sentry

Access your Sentry issues and projects directly in your workflow.

Read more

Figma

Access your Figma files and designs directly in your workflow.

Read more

Redis

Access your Redis databases directly in your workflow.

Read more

OpenSearch

Access your OpenSearch databases directly in your workflow.

Read more

Was this page helpful?