.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/suekou/mcp-notion-server
home/mcp-servers/suekou/mcp-notion-server
suekou avatar

mcp-notion-server

bysuekou· 1 MCP server

Installs

12k

Stars

918

Forks

180

Category

Office & Documents

View on GitHub

TL;DR

AI-friendly MCP server for the Notion API. It helps agents find, read, query, and update Notion workspaces while keeping responses compact enough for day-to-day AI workflows.

How to install mcp-notion-server?

suekou/mcp-notion-server
$git clone https://github.com/suekou/mcp-notion-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-notion-server by running `git clone https://github.com/suekou/mcp-notion-server`, then use it for the current task and follow its documentation at https://github.com/suekou/mcp-notion-server.

Files · 1

View on GitHub
README.md
1# Notion MCP Server
2 
3AI-friendly MCP server for the Notion API. It helps agents find, read, query, and update Notion workspaces while keeping responses compact enough for day-to-day AI workflows.
4 
5This server targets the Notion API `2026-03-11` and uses the current database/data source model. It exposes MCP tools, prompts, resources, structured tool results, and optional MCP Apps for interactive Notion workflows.
6 
7## Highlights
8 
9- Search and target discovery with `notion_find`.
10- Compact page reading with stable block IDs via `notion_read_page`.
11- Data source schema inspection with `notion_inspect_data_source`.
12- Schema-aware data source querying and item creation with simple values.
13- Simple page editing tools for paragraphs, headings, lists, todos, quotes, callouts, code blocks, dividers, and safe Markdown append.
14- Raw Notion API tools for advanced block, page, database, data source, comment, and user operations.
15- Optional MCP Apps: Data Source Explorer and Page Workbench.
16 
17## Quick Start
18 
19Add this server to an MCP host such as Claude Desktop:
20 
21```json
22{
23 "mcpServers": {
24 "notion": {
25 "command": "npx",
26 "args": ["-y", "@suekou/mcp-notion-server"],
27 "env": {
28 "NOTION_API_TOKEN": "your-integration-token"
29 }
30 }
31 }
32}
33```
34 
35Restart your MCP host after saving the configuration.
36 
37## Setup Guide
38 
39### 1. Create a Notion integration
40 
41Open the [Notion integrations dashboard](https://www.notion.so/profile/integrations), then create a new internal integration.
42 
43![Internal connections](docs/assets/setup/internal-connections.png)
44![New connections](docs/assets/setup/new-connection.png)
45 
46### 2. Configure capabilities
47 
48Grant only the capabilities you need:
49 
50- Read content: required for search, page reads, data source retrieval, and queries.
51- Insert content: required for creating pages/items and appending blocks.
52- Update content: required for updating pages, blocks, and data source schemas.
53- Read comments / Insert comments: required only for comment tools.
54- User information: required only when using user lookup tools.
55 
56For full functionality during setup, enable read, insert, and update content. Add comment or user capabilities only if you plan to use those tools.
57 
58![Notion integration capabilities](docs/assets/setup/capabilities.png)
59 
60### 3. Grant content access
61 
62Open the **Content access** tab for your integration, then select the pages or databases you want the MCP server to read or edit.
63 
64You can also grant access from the target Notion page or database: open the `...` menu, choose **Connections**, then add your integration.
65 
66Notion only lets an integration access pages and databases that have been shared with it. A connection added to a page can also access that page's children.
67 
68![Edit integration content access](docs/assets/setup/edit-connection.png)
69 
70### 4. Copy the internal integration token
71 
72Copy the integration secret. This value becomes `NOTION_API_TOKEN` in your MCP host config.
73 
74![Copy internal integration token](docs/assets/setup/access-token.png)
75 
76### 5. Configure your MCP host
77 
78For Cursor, Claude Desktop, and other MCP hosts, add this server config to your MCP settings:
79 
80```json
81{
82 "mcpServers": {
83 "notion": {
84 "command": "npx",
85 "args": ["-y", "@suekou/mcp-notion-server"],
86 "env": {
87 "NOTION_API_TOKEN": "secret_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
88 }
89 }
90 }
91}
92```
93 
94For a locally built checkout:
95 
96```json
97{
98 "mcpServers": {
99 "notion": {
100 "command": "node",
101 "args": ["/absolute/path/to/suekou-mcp-notion-server/build/index.js"],
102 "env": {
103 "NOTION_API_TOKEN": "secret_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
104 }
105 }
106 }
107}
108```
109 
110## Recommended Workflow
111 
1121. Use `notion_find` to locate a page or data source.
1132. Use `notion_read_page` for page context and editable block IDs.
1143. Use `notion_inspect_data_source` before querying or creating data source items.
1154. Use `notion_query_data_source_by_values` and `notion_create_d

Preview

suekou/mcp-notion-serversuekou/mcp-notion-server

# Notion MCP Server

AI-friendly MCP server for the Notion API. It helps agents find, read, query, and update Notion workspaces while keeping responses compact enough for day-to-day

This server targets the Notion API `2026-03-11` and uses the current database/data source model. It exposes MCP tools, prompts, resources, structured tool resul

## Highlights

Reposuekou/mcp-notion-server
TypeMCP Servers
CategoryOffice & Documents
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPmcpmodel-context-protocol

Related

6 picks
Type
  1. makenotion avatarnotion-mcp-serverOfficial MCP server for Notion APIMCP ServersJul 2026619k4.6k
  2. haris-musa avatarexcel-mcp-serverExcel MCP Server for manipulating Excel filesMCP ServersApr 2026572k4.1k
  3. guillehr2 avatarexcel-mcp-server-masterA comprehensive Model Context Protocol (MCP) server for Excel file manipulationMCP ServersJun 2025570k33
  4. mort-lab avatarexcel-mcpA Model Context Protocol server for comprehensive Excel file manipulation using openpyxlMCP ServersOct 2025570k5
  5. softeria avatarms-365-mcp-serverA Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph APIMCP ServersJul 2026111k880
  6. xing5 avatarmcp-google-sheetsThis MCP server integrates with your Google Drive and Google Sheets, to enable creating and modifying spreadsheets.MCP ServersMay 202697k964