This MCP server, developed by suekou, enables seamless integration between Notion workspaces and AI systems like Claude Desktop. Built using the Model Context Protocol, it provides a comprehensive set of tools for interacting with Notion's API, including block manipulation, page and database operations, and querying capabilities. The implementation focuses on exposing Notion's features through a standardized interface, offering functionality to create, retrieve, update, and delete various Notion elements. It's particularly useful for organizations looking to incorporate Notion's collaborative workspace features into their AI workflows, enabling use cases such as automated note-taking, knowledge base management, and AI-assisted content creation without directly interacting with Notion's API.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Append child blocks to a parent block. Parameters: block_id (string), children (array)
Retrieve information about a specific block. Parameters: block_id (string)
Retrieve the children of a specific block. Parameters: block_id (string), start_cursor (optional string), page_size (number, default: 100, max: 100)
Delete a specific block. Parameters: block_id (string)
Retrieve information about a specific page. Parameters: page_id (string)
Update properties of a page. Parameters: page_id (string), properties (object)
Create a new database. Parameters: parent (object), title (array), properties (object)
Query a database. Parameters: database_id (string), filter (optional object), sorts (optional array), start_cursor (optional string), page_size (number, default: 100, max: 100)
Retrieve information about a specific database. Parameters: database_id (string)
Update information about a database. Parameters: database_id (string), title (optional array), description (optional array), properties (optional object)
Create a new item in a Notion database. Parameters: database_id (string), properties (object)