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.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
Append child blocks to a parent block. Required inputs: block_id (string), children (array). Returns: Information about the appended blocks.
Retrieve information about a specific block. Required inputs: block_id (string). Returns: Detailed information about the block.
Retrieve the children of a specific block. Required inputs: block_id (string). Optional inputs: start_cursor (string), page_size (number, default: 100, max: 100). Returns: List of child blocks.
Delete a specific block. Required inputs: block_id (string). Returns: Confirmation of the deletion.
Retrieve information about a specific page. Required inputs: page_id (string). Returns: Detailed information about the page.
Update properties of a page. Required inputs: page_id (string), properties (object). Returns: Information about the updated page.
Create a new database. Required inputs: parent (object), title (array), properties (object). Returns: Information about the created database.
Query a database. Required inputs: database_id (string). Optional inputs: filter (object), sorts (array), start_cursor (string), page_size (number, default: 100, max: 100). Returns: List of results from the query.
Retrieve information about a specific database. Required inputs: database_id (string). Returns: Detailed information about the database.
Update information about a database. Required inputs: database_id (string). Optional inputs: title (array), description (array), properties (object). Returns: Information about the updated database.
Create a new item in a Notion database. Required inputs: database_id (string), properties (object). Returns: Information about the newly created item.