Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
29 lines
972 B
TOML
29 lines
972 B
TOML
id = "notion"
|
|
name = "Notion"
|
|
description = "Access and manage Notion pages, databases, and blocks through the MCP server"
|
|
category = "productivity"
|
|
icon = "📝"
|
|
tags = ["notes", "wiki", "knowledge-base", "documentation", "databases"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-notion"]
|
|
|
|
[[required_env]]
|
|
name = "NOTION_API_KEY"
|
|
label = "Notion Integration Token"
|
|
help = "An internal integration token created in your Notion workspace settings"
|
|
is_secret = true
|
|
get_url = "https://www.notion.so/my-integrations"
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Go to https://www.notion.so/my-integrations and click 'New integration'.
|
|
2. Give it a name, select your workspace, and grant the required capabilities (Read/Update/Insert content).
|
|
3. Copy the Internal Integration Token and paste it into the NOTION_API_KEY field above. Then share relevant pages with the integration in Notion.
|
|
"""
|