← Discover MCPs and Agents
c
MCPProductivityMCP Registry

cursor-notion-plugin

Notion Skills + Notion MCP server packaged as a Cursor plugin

Links

README

From the repo.

Notion Plugin for Cursor

This repository provides an official Cursor plugin that bundles:

  • Notion Skills that teach the AI how to work intelligently inside your Notion workspace
  • The Notion MCP Server, which enables secure search, read, and update operations on your Notion content
  • A curated set of Skills that make common Notion workflows fast and natural

This plugin allows Cursor users to install everything — Skills + MCP server — with one click.


Features

Notion Skills

Includes high-quality skills for working with Notion:

SkillDescription
Knowledge CaptureTransform conversations into structured Notion documentation
Meeting IntelligencePrepare meeting materials with context and research
Research DocumentationSearch, synthesize, and document research findings
Spec to ImplementationTurn specs into tasks with progress tracking

Integrated Notion MCP Server

Cursor automatically connects to Notion's hosted MCP server at:

https://mcp.notion.com/mcp

This provides tools to:

  • Search your workspace
  • Retrieve pages & databases
  • Create and update pages
  • Append notes or blocks
  • Insert database rows
  • Work with properties safely

Available Skills

SkillDescription
searchSearch your entire Notion workspace
findQuick title-based search for pages/databases
create-pageCreate a new page under a given parent
create-taskCreate a task in a Tasks-style database
create-database-rowInsert a row in any database
database-queryQuery a database by name or ID
tasks-setupSet up a Notion task board for tracking
tasks-buildBuild a task from a Notion page URL
tasks-planCreate implementation plan from a spec
tasks-explain-diffGenerate a Notion doc explaining code changes
knowledge-captureCapture knowledge from conversations
meeting-intelligencePrepare comprehensive meeting materials
research-documentationResearch and document topics from Notion
spec-to-implementationConvert specs to implementation plans

Installation

1. Add the plugin

In Cursor, add this plugin from the marketplace or install directly from GitHub:

makenotion/cursor-notion-plugin

Authentication

The Notion MCP server supports OAuth. You'll be prompted to authenticate with your Notion account when first using the plugin.


Usage Examples

Search your workspace

Ask Cursor to search for content:

  • "Search my Notion for Q1 roadmap documents"
  • "Find pages about customer feedback"

Create content

  • "Create a new meeting notes page for tomorrow's standup"
  • "Add a task to fix the login bug, due Friday"
  • "Insert a row in my Projects database for the new feature"

Prepare for meetings

  • "Prep me for tomorrow's product review meeting"
  • "Create a pre-read for the customer call with Acme Corp"

Document research

  • "Research and document our API architecture decisions"
  • "Create a comparison report of the authentication options we discussed"

Implement specs

  • "Create an implementation plan from the Payment Integration spec"
  • "Break down the Mobile App Redesign PRD into tasks"

Directory Structure

cursor-notion-plugin/
├── .cursor/
│   └── plugin.json              # Plugin manifest
├── mcp.json                     # MCP server configuration
├── README.md                    # This file
└── skills/                      # All skills as SKILL.md files
    ├── search/
    ├── find/
    ├── create-page/
    ├── create-task/
    ├── create-database-row/
    ├── database-query/
    ├── tasks-setup/
    ├── tasks-build/
    ├── tasks-plan/
    ├── tasks-explain-diff/
    ├── knowledge-capture/
    ├── meeting-intelligence/
    ├── research-documentation/
    └── spec-to-implementation/

Credits

  • Skills by Notion
  • MCP Server by Notion
  • Plugin Specification by Cursor

Collected info

  • 30 stars
  • 14 forks
  • Source updated: 2/7/2026

Config for your environment

Replace {MCP_ENDPOINT_URL} with this MCP’s endpoint URL (from its repo or docs above). No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "{MCP_ENDPOINT_URL}"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.