Add Notion MCP to the marketplace (#104)

This commit is contained in:
Matt Rubens 2025-06-16 21:32:23 -04:00 committed by GitHub
parent 2470f1f822
commit 114f8ecfb5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1113,6 +1113,78 @@ items:
- name: 'Exa API Key'
key: 'EXA_API_KEY'
placeholder: 'your_exa_api_key_here'
- id: 'notion'
name: 'Notion'
description: "Official Notion MCP Server that provides seamless integration with Notion APIs, enabling advanced automation and interaction capabilities for managing pages, databases, comments, and content within Notion workspaces."
author: 'makenotion'
url: 'https://github.com/makenotion/notion-mcp-server'
tags:
- 'notion'
- 'productivity'
- 'note-taking'
- 'database-management'
- 'content-management'
- 'collaboration'
- 'workspace'
- 'api-integration'
prerequisites:
- 'Notion account with integration access'
content:
- name: 'NPX'
prerequisites:
- 'Node.js'
content: |
{
"command": "npx",
"args": ["-y", "@notionhq/notion-mcp-server"],
"env": {
"OPENAPI_MCP_HEADERS": "{\"Authorization\": \"Bearer {{NOTION_API_KEY}}\", \"Notion-Version\": \"2022-06-28\"}"
}
}
- name: 'Docker Hub Image'
prerequisites:
- 'Docker'
content: |
{
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "OPENAPI_MCP_HEADERS",
"mcp/notion"
],
"env": {
"OPENAPI_MCP_HEADERS": "{\"Authorization\": \"Bearer {{NOTION_API_KEY}}\", \"Notion-Version\": \"2022-06-28\"}"
}
}
- name: 'Docker Local Build'
prerequisites:
- 'Docker'
content: |
{
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"OPENAPI_MCP_HEADERS={\"Authorization\": \"Bearer {{NOTION_API_KEY}}\", \"Notion-Version\": \"2022-06-28\"}",
"notion-mcp-server"
]
}
- name: 'Smithery Installation'
prerequisites:
- 'Node.js'
content: |
{
"command": "npx",
"args": ["-y", "@smithery/cli", "install", "@makenotion/notion-mcp-server", "--client", "claude"]
}
parameters:
- name: 'Notion API Key'
key: 'NOTION_API_KEY'
placeholder: 'ntn_your_notion_integration_token'
- id: 'jetbrains'
name: 'JetBrains IDE'
description: "Proxies requests between AI assistants and JetBrains IDEs, enabling direct interaction with the IDE's built-in webserver for development tasks."