Skip to main content

Notion MCP server guide

Overview

The official Notion remote MCP server provides access to your Notion workspace through the Notion API, allowing AI agents to search, read, create, and manage pages, databases, and other content in your Notion workspace.

This is a remote MCP server that uses OAuth authentication with dynamic client registration, meaning ToolHive handles all authentication setup automatically with minimal configuration required.

Metadata

Expand to view the MCP server's metadata
Server metadata
Name: notion-remote
Type: remote
Description: Notion's official remote MCP server for workspaces, pages, databases, and comments
Tier: Official
Status: Active
Transport: streamable-http
URL: https://mcp.notion.com/mcp
Repository URL:
Popularity: 0 stars, 0 pulls
Last Updated: 2025-09-11T02:29:32Z

Tools:
- search
- fetch
- create-pages
- update-page
- move-pages
- duplicate-page
- create-database
- update-database
- create-comment
- get-comments
- get-users
- get-user
- get-self

Tags:
remote, notion, workspace, pages, databases, comments, oauth, productivity, collaboration

Example Command:
thv proxy notion-remote

Usage

Select the notion-remote MCP server in the ToolHive registry.

The server is preconfigured with the following settings:

  • Server URL: https://mcp.notion.com/mcp
  • Transport: Streamable HTTP
  • Authorization method: Dynamic Client Registration

In the Callback port field, enter the port that ToolHive should use to listen for the OAuth callback. This can be any available port on your machine.

When you install the server, ToolHive:

  1. Discovers the OAuth endpoints automatically
  2. Registers a new OAuth client with Notion
  3. Opens your browser for authentication

After you authorize access in your browser, the remote MCP server appears in your server list with a "Running" status.

Sample prompts

Here are some sample prompts you can use to interact with the Notion MCP server:

  • "Search my Notion workspace for pages about 'project planning'"
  • "Create a new page in my Notion workspace titled 'Meeting Notes' with today's date"
  • "Find all database entries in my Task List database where status is 'To Do'"
  • "Update the page titled 'Weekly Report' with a summary of this week's accomplishments"
  • "List all pages in my 'Engineering' teamspace"
  • "Create a new Notion database for tracking customer feedback with columns for name, date, and feedback text"
  • "Add a comment to the page titled 'Q4 Planning' with my feedback"
  • "Search for pages created by john@example.com in the last 30 days"
  • Scope your access: When authenticating, review the permissions requested and only grant access to the workspaces you need for your use case.
  • Test with read operations: Start with search and fetch operations to familiarize yourself with the server's capabilities before making changes to your workspace.
  • Use specific searches: Instead of broad workspace searches, narrow down results by searching within specific pages, databases, or teamspaces for better performance.
  • Understand the data model: Notion has a specific hierarchy (workspaces, teamspaces, pages, databases, data sources). Understanding this structure helps craft more effective prompts.
  • Be cautious with updates: The MCP server can modify and delete content in your Notion workspace. Always review changes before applying them to important pages or databases.
  • Handle authentication errors: If you see authentication errors, restart the server to trigger a new OAuth flow: thv restart notion-remote

Troubleshooting

OAuth authentication fails

If OAuth authentication fails or times out:

  1. Ensure the callback port is not blocked by a firewall
  2. Check that your browser allows pop-ups from ToolHive
  3. Try restarting the server with thv restart notion-remote
Server shows "Running" but tools don't work

The server may have lost authentication. Restart the server to re-authenticate:

thv restart notion-remote
Can't find content in search results
  • Notion search uses semantic search, which may return different results than exact keyword matching
  • Try using more specific search terms or filtering by page, database, or teamspace
  • Check that you have access to the content you're searching for (permissions may limit results)
Rate limits

Notion's API has rate limits. If you encounter rate limit errors:

  • Reduce the frequency of requests
  • Use more specific queries to reduce the amount of data retrieved
  • Wait for the rate limit to reset (typically a few minutes)