
makenotion / cursor-notion-plugin
✓ Official★ 17A skill package that teaches your agent 14 capabilities — every one documented and browsable below, no GitHub required · by notion.
Each skill below is one capability this package teaches your agent. Install the whole package, or open a skill to install just that one.
Insert a new row into a specified Notion database using natural-language property values. Handles property name matching and validation.
1 file — installable on its own
Create a new Notion page, optionally under a specific parent. Automatically structures content based on page type (meeting notes, project pages, etc.).
1 file — installable on its own
Create a new task in the user's Notion tasks database with sensible defaults for due date, status, owner, and project.
1 file — installable on its own
Query a Notion database by name or ID and return structured, readable results with optional filters and sorting.
1 file — installable on its own
Quickly find pages or databases in Notion by title keywords. Returns precise matches rather than comprehensive results.
1 file — installable on its own
Transform conversations and discussions into structured documentation pages in Notion. Captures insights, decisions, and knowledge from chat context with…
1 file — installable on its own
Prepare meeting materials by gathering context from Notion, enriching with research, and creating both an internal pre-read and external agenda saved to Notion.
1 file — installable on its own
Search across your Notion workspace, synthesize findings from multiple pages, and create comprehensive research documentation with proper citations and…
1 file — installable on its own
Search the user's Notion workspace using the Notion MCP server. Use for finding pages, databases, and content by keywords or natural-language queries.
1 file — installable on its own
Turn product or tech specs into concrete Notion tasks. Breaks down spec pages into detailed implementation plans with clear tasks, acceptance criteria, and…
1 file — installable on its own
Build a task from a Notion page URL. Fetches task details, marks it in progress, implements the work, and updates status in Notion.
1 file — installable on its own
Generate a rich Notion document explaining code changes. Creates comprehensive documentation with background, intuition, code walkthrough, and verification…
1 file — installable on its own
Create an implementation plan from a Notion task or specification. Breaks down requirements into actionable steps with estimates and dependencies.
1 file — installable on its own
Set up a Notion task board for tracking tasks. Guides users through using a template or connecting an existing board.
1 file — installable on its own
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:
| Skill | Description |
|---|---|
| Knowledge Capture | Transform conversations into structured Notion documentation |
| Meeting Intelligence | Prepare meeting materials with context and research |
| Research Documentation | Search, synthesize, and document research findings |
| Spec to Implementation | Turn specs into tasks with progress tracking |
Integrated Notion MCP Server
Cursor automatically connects to Notion's hosted MCP server at:
https://mcp.notion.com/mcpThis 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
| Skill | Description |
|---|---|
search | Search your entire Notion workspace |
find | Quick title-based search for pages/databases |
create-page | Create a new page under a given parent |
create-task | Create a task in a Tasks-style database |
create-database-row | Insert a row in any database |
database-query | Query a database by name or ID |
tasks-setup | Set up a Notion task board for tracking |
tasks-build | Build a task from a Notion page URL |
tasks-plan | Create implementation plan from a spec |
tasks-explain-diff | Generate a Notion doc explaining code changes |
knowledge-capture | Capture knowledge from conversations |
meeting-intelligence | Prepare comprehensive meeting materials |
research-documentation | Research and document topics from Notion |
spec-to-implementation | Convert 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-pluginAuthentication
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
Install the whole package (14 skills):
npx skills add https://github.com/makenotion/cursor-notion-pluginOr install a single skill:
npx skills add https://github.com/makenotion/cursor-notion-plugin --skill <name>Pick the skill name from the Skills tab — each entry there installs independently.