@notionhq/notion-mcp-server 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/bin/cli.mjs +28 -28
- package/package.json +9 -8
- package/scripts/start-server.ts +17 -59
- package/src/init-server.ts +50 -0
- package/src/openapi-mcp-server/README.md +2 -0
- package/src/openapi-mcp-server/client/http-client.ts +1 -0
- package/src/openapi-mcp-server/mcp/proxy.ts +4 -0
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
# Notion MCP
|
|
1
|
+
# Notion MCP Server
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
This project implements an [MCP server](https://spec.modelcontextprotocol.io/) for the Notion API.
|
|
5
|
+
This project implements an [MCP server](https://spec.modelcontextprotocol.io/) for the [Notion API](https://developers.notion.com/reference/intro).
|
|
6
6
|
|
|
7
7
|
### Installation
|
|
8
8
|
|
|
9
9
|
Add the following to your `.cursor/mcp.json` or `claude_desktop_config.json` (MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`)
|
|
10
10
|
|
|
11
|
-
Don't forget to
|
|
11
|
+
Don't forget to add your Bearer token.
|
|
12
12
|
|
|
13
13
|
```javascript
|
|
14
14
|
{
|
|
@@ -54,5 +54,5 @@ npm run build
|
|
|
54
54
|
Execute
|
|
55
55
|
|
|
56
56
|
```
|
|
57
|
-
npx @notionhq/notion-mcp-server
|
|
57
|
+
npx -y --prefix /path/to/local/notion-mcp-server @notionhq/notion-mcp-server
|
|
58
58
|
```
|