Skip to main content
Glama

SystemPrompt MCP Notion Server

notion-service.ts692 B
import type { NotionPage } from "../../types/notion"; export class NotionService { private static instance: NotionService; private constructor() {} public static initialize(): void { if (!NotionService.instance) { NotionService.instance = new NotionService(); } } public static getInstance(): NotionService { if (!NotionService.instance) { NotionService.instance = new NotionService(); } return NotionService.instance; } async createPage(): Promise<NotionPage> { return Promise.resolve({} as NotionPage); } async updatePage(): Promise<NotionPage> { return Promise.resolve({} as NotionPage); } } export default NotionService;

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ejb503/systemprompt-mcp-notion'

If you have feedback or need assistance with the MCP directory API, please join our Discord server