N

Notion Calendar

Query Notion Calendar (Cron) events.

·No reviews yet
Repo
Share:

About

Auto-generated

Notion Calendar is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Notion Calendar.

What does the Notion Calendar MCP do?
This MCP allows users to query and manage events within Notion Calendar, integrating calendar functionalities directly into an MCP client. It enables interaction with schedules and events defined in Notion.
How can I configure the Notion Calendar MCP in a client like Claude Desktop?
Configuration typically involves cloning the repository, installing dependencies, and then adding the local server endpoint to your MCP client. Specific steps depend on the client's MCP integration method.
Does the Notion Calendar MCP require authentication?
Yes, this MCP uses OAuth for authentication. Users will need to authorize the MCP to access their Notion Calendar data through the standard OAuth flow.
What are the key capabilities exposed by the Notion Calendar MCP?
The MCP's primary capability is querying Notion Calendar events. While specific tools are not listed, it will likely include functions to retrieve, list, or filter calendar entries based on various criteria.
What are the prerequisites for using the Notion Calendar MCP?
A primary prerequisite is an existing Notion account with Notion Calendar set up. Users must also have the necessary permissions within Notion to allow OAuth access to their calendar data.

Install Notion Calendar

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "notion-calendar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-notion-calendar"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "notion-calendar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-notion-calendar"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "notion-calendar": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-notion-calendar"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.