- Home
- MCP servers
- Notion
Notion
- typescript
22
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"orbit-logistics-notion-mcp-server": {
"command": "npx",
"args": [
"-y",
"@orbit-logistics/notion-mcp-server",
"-t",
"<notion_integration_token>"
],
"env": {
"NOTION_INTEGRATION_TOKEN": "<notion_integration_token>"
}
}
}
}This MCP server exposes the full Notion API as a set of tools you can call from your language model. It enables your LLM to read, create, update, and delete Notion pages through natural language instructions, making Notion workflows easier to automate and reason about.
How to use
You access the Notion MCP Server through an MCP client. The server runs as a local or remote process and presents Notion operations as callable tools. You can connect via clients like Cursor or Claude Desktop to invoke these tools in your prompts.
Using Cursor, you start the MCP server with your Notion integration token and then point Cursor to that server. The server exposes tools that perform Notion read, create, update, and delete operations on pages and related content.
How to install
Prerequisites: you need a working Node.js runtime with npm or npx available on your system.
Install and run the MCP server using the following command in your terminal. This starts the server with your Notion integration token.
npx -y @orbit-logistics/notion-mcp-server -t <notion_integration_token>
Additional setup for Claude Desktop users
If you use Claude Desktop, add an MCP server entry in your Claude Desktop configuration to invoke the Notion MCP server.
{
"mcpServers": {
"notion": {
"command": "npx",
"args": [
"-y",
"mcp-sequential-thinking-test",
"-t",
"<notion_integration_token>"
]
}
}
}
Notes and tips
-
Use the Notion integration token you created in Notion with the appropriate permissions to access the pages you want to manage.
-
The MCP server exposes a set of tools that map to Notion operations. You can instruct your LLM to read a page, create a new page, update a page, or delete a page by name and parameters as part of your prompts.