Skip to main content

logics-mcp-notion

Install, configure, and use the Notion MCP server to connect MCP clients to Notion (read/query/update pages and databases). Use when wiring MCP clients to Notion. Use when this capability is needed.

Ir a la instalación

Datos de origen

Repositorio
tomevault-io/skills-registry
Última actividad en el origen
28 de abril de 2026 a las 22:53
Idioma detectado de SKILL.md
inglés
Estrellas
1
Forks
0

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Explorador de archivos
2 archivos

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
name
logics-mcp-notion
description
Install, configure, and use the Notion MCP server to connect MCP clients to Notion (read/query/update pages and databases). Use when wiring MCP clients to Notion. Use when this capability is needed.
metadata
{"author":"alexago83"}
# Notion MCP ## Quick start 1) Create a Notion integration and connect the target pages/databases to it. 2) Add the MCP server config to your client (below). 3) Restart the client and test a simple query (search or retrieve a page). ### Standard MCP config (official server) ```json { "mcpServers": { "notionApi": { "command": "npx", "args": ["-y", "@notionhq/notion-mcp-server"], "env": { "NOTION_TOKEN": "ntn_***" } } } } ``` ### Advanced auth (optional) Use OpenAPI headers if you need custom auth/version headers: ```json { "mcpServers": { "notionApi": { "command": "npx", "args": ["-y", "@notionhq/notion-mcp-server"], "env": { "OPENAPI_MCP_HEADERS": "{\"Authorization\": \"Bearer ntn_***\", \"Notion-Version\": \"2025-09-03\" }" } } } } ``` ### HTTP transport (optional) If your client needs HTTP transport: ```bash npx @notionhq/notion-mcp-server --transport http --auth-token "your-secret-token" ``` The server will be available at `http://0.0.0.0:<port>/mcp`. ### Community alternative (optional) If you need Markdown conversion output: ```json { "mcpServers": { "notion": { "command": "npx", "args": ["-y", "@suekou/mcp-notion-server"], "env": { "NOTION_API_TOKEN": "your-integration-token", "NOTION_MARKDOWN_CONVERSION": "true" } } } } ``` ## Usage flow (agent-side) - Start with a safe read-only query: search or retrieve a known page. - Validate permissions before attempting writes. - Prefer small, targeted operations (avoid full-workspace scans). ## Safety - Notion tokens grant workspace access; use least-privileged integrations. - Prefer read-only integrations when possible. - Avoid exposing tokens in logs or prompts. --- > Converted and distributed by [TomeVault](https://tomevault.io/claim/alexago83) — claim your Tome and manage your conversions. <!-- tomevault:4.0:skill_md:2026-04-13 -->
Ver en GitHub