systemprompt-mcp-notion
Version:
A specialized Model Context Protocol (MCP) server that integrates Notion into your AI workflows. This server enables seamless access to Notion through MCP, allowing AI agents to interact with pages, databases, and comments.
36 lines (35 loc) • 1.11 kB
JavaScript
export const serverConfig = {
name: "systemprompt-mcp-notion",
version: "1.0.7",
metadata: {
name: "System Prompt Notion Integration Server",
description: "MCP server providing seamless integration with Notion. Enables AI agents to interact with Notion pages, databases, and comments through a secure, standardized interface.",
icon: "mdi:notion",
color: "black",
serverStartTime: Date.now(),
environment: process.env.NODE_ENV,
customData: {
serverFeatures: ["notion-pages", "notion-databases", "notion-comments"],
supportedAPIs: ["notion"],
authProvider: "notion-api",
requiredCapabilities: [
"read_content",
"update_content",
"insert_content",
"comment_access",
],
},
},
};
export const serverCapabilities = {
capabilities: {
resources: {
listChanged: true,
},
tools: {},
prompts: {
listChanged: true,
},
sampling: {},
},
};