.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

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

notion-mcp-server

bymakenotion· 1 MCP server

Installs

619k

Stars

4.6k

Forks

607

Category

Office & Documents

View on GitHub

TL;DR

> [!NOTE] > > We’ve introduced Notion MCP, a remote MCP server with the following improvements: > > - Easy installation via standard OAuth. No need to fiddle with JSON or API tokens anymore. > - Powerful tools tailored to AI agents, including editing pages in Markdown. These

How to install notion-mcp-server?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
README.md
1# Notion MCP Server
2 
3> [!NOTE]
4>
5> We’ve introduced **Notion MCP**, a remote MCP server with the following improvements:
6>
7> - Easy installation via standard OAuth. No need to fiddle with JSON or API tokens anymore.
8> - Powerful tools tailored to AI agents, including editing pages in Markdown. These tools are designed with optimized token consumption in mind.
9>
10> Learn more and get started at [Notion MCP documentation](https://developers.notion.com/docs/mcp).
11>
12> We are prioritizing, and only providing active support for, **Notion MCP** (remote). As a result:
13>
14> - We may sunset this local MCP server repository in the future.
15> - Issues and pull requests here are not actively monitored.
16> - Please do not file issues relating to the remote MCP here; instead, contact Notion support.
17 
18![notion-mcp-sm](https://github.com/user-attachments/assets/6c07003c-8455-4636-b298-d60ffdf46cd8)
19 
20This project implements an [MCP server](https://spec.modelcontextprotocol.io/) for the [Notion API](https://developers.notion.com/reference/intro).
21 
22![mcp-demo](https://github.com/user-attachments/assets/e3ff90a7-7801-48a9-b807-f7dd47f0d3d6)
23 
24---
25 
26## ⚠️ Version 2.0.0 breaking changes
27 
28**Version 2.0.0 migrates to the Notion API 2025-09-03** which introduces data sources as the primary abstraction for databases.
29 
30### What changed
31 
32**Removed tools (3):**
33 
34- `post-database-query` - replaced by `query-data-source`
35- `update-a-database` - replaced by `update-a-data-source`
36- `create-a-database` - replaced by `create-a-data-source`
37 
38**New tools (7):**
39 
40- `query-data-source` - Query a data source (database) with filters and sorts
41- `retrieve-a-data-source` - Get metadata and schema for a data source
42- `update-a-data-source` - Update data source properties
43- `create-a-data-source` - Create a new data source
44- `list-data-source-templates` - List available templates in a data source
45- `move-page` - Move a page to a different parent location
46- `retrieve-a-database` - Get database metadata including its data source IDs
47 
48**Parameter changes:**
49 
50- All database operations now use `data_source_id` instead of `database_id`
51- Search filter values changed from `["page", "database"]` to `["page", "data_source"]`
52- Page creation now supports both `page_id` and `database_id` parents (for data sources)
53 
54### Do I need to migrate?
55 
56**No code changes required.** MCP tools are discovered automatically when the server starts. When you upgrade to v2.0.0, AI clients will automatically see the new tool names and parameters. The old database tools are no longer available.
57 
58If you have hardcoded tool names or prompts that reference the old database tools, update them to use the new data source tools:
59 
60| Old Tool (v1.x) | New Tool (v2.0) | Parameter Change |
61| -------------- | --------------- | ---------------- |
62| `post-database-query` | `query-data-source` | `database_id` → `data_source_id` |
63| `update-a-database` | `update-a-data-source` | `database_id` → `data_source_id` |
64| `create-a-database` | `create-a-data-source` | No change (uses `parent.page_id`) |
65 
66> **Note:** `retrieve-a-database` is still available and returns database metadata including the list of data source IDs. Use `retrieve-a-data-source` to get the schema and properties of a specific data source.
67 
68**Total tools now: 22** (was 19 in v1.x)
69 
70---
71 
72## Page content as Markdown
73 
74The server exposes two tools for working with page content as enhanced Markdown instead of block JSON, which is significantly more token-efficient for AI agents:
75 
76- `retrieve-page-markdown` — Read a page's full content as Markdown (`GET /v1/pages/{page_id}/markdown`). Pass `include_transcript: true` to inline meeting-note transcripts.
77- `update-page-markdown` — Edit a page's content with Markdown (`PATCH /v1/pages/{page_id}/markdown`). Prefer `replace_content` to overwrite the whole page, or `update_content` for targeted find-and-replace edits.
78 
79These endpoints require Notion API version `2026-03-11`. The server now sources the `Notion-Version` he

Preview

makenotion/notion-mcp-servermakenotion/notion-mcp-server

# Notion MCP Server

> [!NOTE]

>

> We’ve introduced **Notion MCP**, a remote MCP server with the following improvements:

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

Tags

MCP

Related

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