ldraney-notion-mcp 0.1.3__tar.gz → 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/PKG-INFO +1 -1
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/pyproject.toml +1 -1
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/PKG-INFO +1 -1
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/tools/blocks.py +18 -9
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/tools/comments.py +9 -6
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/tools/databases.py +36 -28
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/tools/pages.py +22 -13
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/tools/search.py +8 -5
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/tools/users.py +5 -2
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/README.md +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/setup.cfg +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/SOURCES.txt +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/dependency_links.txt +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/entry_points.txt +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/requires.txt +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/top_level.txt +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/__init__.py +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/__main__.py +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/server.py +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/notion_mcp/tools/__init__.py +0 -0
- {ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/tests/test_tools.py +0 -0
|
@@ -3,13 +3,17 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import json
|
|
6
|
-
from typing import Any
|
|
6
|
+
from typing import Annotated, Any
|
|
7
|
+
|
|
8
|
+
from pydantic import Field
|
|
7
9
|
|
|
8
10
|
from ..server import mcp, get_client, _parse_json, _error_response
|
|
9
11
|
|
|
10
12
|
|
|
11
13
|
@mcp.tool()
|
|
12
|
-
def get_block(
|
|
14
|
+
def get_block(
|
|
15
|
+
block_id: Annotated[str, Field(description="The UUID of the block to retrieve")],
|
|
16
|
+
) -> str:
|
|
13
17
|
"""Retrieve a Notion block by its ID.
|
|
14
18
|
|
|
15
19
|
Args:
|
|
@@ -24,9 +28,9 @@ def get_block(block_id: str) -> str:
|
|
|
24
28
|
|
|
25
29
|
@mcp.tool()
|
|
26
30
|
def get_block_children(
|
|
27
|
-
block_id: str,
|
|
28
|
-
start_cursor: str | None = None,
|
|
29
|
-
page_size: int | None = None,
|
|
31
|
+
block_id: Annotated[str, Field(description="The UUID of the parent block")],
|
|
32
|
+
start_cursor: Annotated[str | None, Field(description="Cursor for pagination")] = None,
|
|
33
|
+
page_size: Annotated[int | None, Field(description="Number of results per page")] = None,
|
|
30
34
|
) -> str:
|
|
31
35
|
"""List child blocks of a Notion block.
|
|
32
36
|
|
|
@@ -47,7 +51,10 @@ def get_block_children(
|
|
|
47
51
|
|
|
48
52
|
|
|
49
53
|
@mcp.tool()
|
|
50
|
-
def append_block_children(
|
|
54
|
+
def append_block_children(
|
|
55
|
+
block_id: Annotated[str, Field(description="The UUID of the parent block to append children to")],
|
|
56
|
+
children: Annotated[str, Field(description="JSON string for a list of block objects to append, e.g. '[{\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"type\": \"text\", \"text\": {\"content\": \"Hello\"}}]}}]'")],
|
|
57
|
+
) -> str:
|
|
51
58
|
"""Append child blocks to a Notion block.
|
|
52
59
|
|
|
53
60
|
IMPORTANT: The children parameter must be passed as a JSON-encoded string, NOT as an object.
|
|
@@ -68,8 +75,8 @@ def append_block_children(block_id: str, children: str) -> str:
|
|
|
68
75
|
|
|
69
76
|
@mcp.tool()
|
|
70
77
|
def update_block(
|
|
71
|
-
block_id: str,
|
|
72
|
-
content: str | None = None,
|
|
78
|
+
block_id: Annotated[str, Field(description="The UUID of the block to update")],
|
|
79
|
+
content: Annotated[str | None, Field(description="JSON string of block properties to update. The keys depend on the block type, e.g. '{\"paragraph\": {\"rich_text\": [{\"type\": \"text\", \"text\": {\"content\": \"Updated text\"}}]}}'")] = None,
|
|
73
80
|
) -> str:
|
|
74
81
|
"""Update a Notion block.
|
|
75
82
|
|
|
@@ -91,7 +98,9 @@ def update_block(
|
|
|
91
98
|
|
|
92
99
|
|
|
93
100
|
@mcp.tool()
|
|
94
|
-
def delete_block(
|
|
101
|
+
def delete_block(
|
|
102
|
+
block_id: Annotated[str, Field(description="The UUID of the block to delete")],
|
|
103
|
+
) -> str:
|
|
95
104
|
"""Delete (archive) a Notion block.
|
|
96
105
|
|
|
97
106
|
Args:
|
|
@@ -3,15 +3,18 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import json
|
|
6
|
+
from typing import Annotated
|
|
7
|
+
|
|
8
|
+
from pydantic import Field
|
|
6
9
|
|
|
7
10
|
from ..server import mcp, get_client, _parse_json, _error_response
|
|
8
11
|
|
|
9
12
|
|
|
10
13
|
@mcp.tool()
|
|
11
14
|
def create_comment(
|
|
12
|
-
parent: str,
|
|
13
|
-
rich_text: str,
|
|
14
|
-
discussion_id: str | None = None,
|
|
15
|
+
parent: Annotated[str, Field(description="JSON string for the parent object, e.g. '{\"page_id\": \"...\"}'")],
|
|
16
|
+
rich_text: Annotated[str, Field(description="JSON string for the rich-text content array, e.g. '[{\"type\": \"text\", \"text\": {\"content\": \"Hello!\"}}]'")],
|
|
17
|
+
discussion_id: Annotated[str | None, Field(description="UUID of an existing discussion thread to reply to. Omit to start a new top-level comment.")] = None,
|
|
15
18
|
) -> str:
|
|
16
19
|
"""Create a comment on a Notion page or block.
|
|
17
20
|
|
|
@@ -41,9 +44,9 @@ def create_comment(
|
|
|
41
44
|
|
|
42
45
|
@mcp.tool()
|
|
43
46
|
def get_comments(
|
|
44
|
-
block_id: str,
|
|
45
|
-
start_cursor: str | None = None,
|
|
46
|
-
page_size: int | None = None,
|
|
47
|
+
block_id: Annotated[str, Field(description="The UUID of the block or page to list comments for")],
|
|
48
|
+
start_cursor: Annotated[str | None, Field(description="Cursor for pagination")] = None,
|
|
49
|
+
page_size: Annotated[int | None, Field(description="Number of results per page")] = None,
|
|
47
50
|
) -> str:
|
|
48
51
|
"""List comments on a Notion block or page.
|
|
49
52
|
|
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import json
|
|
6
|
-
from typing import Any
|
|
6
|
+
from typing import Annotated, Any
|
|
7
|
+
|
|
8
|
+
from pydantic import Field
|
|
7
9
|
|
|
8
10
|
from ..server import mcp, get_client, _parse_json, _error_response
|
|
9
11
|
|
|
@@ -15,9 +17,9 @@ from ..server import mcp, get_client, _parse_json, _error_response
|
|
|
15
17
|
|
|
16
18
|
@mcp.tool()
|
|
17
19
|
def create_database(
|
|
18
|
-
parent: str,
|
|
19
|
-
title: str,
|
|
20
|
-
initial_data_source: str | None = None,
|
|
20
|
+
parent: Annotated[str, Field(description="JSON string for the parent object, e.g. '{\"type\": \"page_id\", \"page_id\": \"...\"}'")],
|
|
21
|
+
title: Annotated[str, Field(description="JSON string for the title rich-text array, e.g. '[{\"type\": \"text\", \"text\": {\"content\": \"My DB\"}}]'")],
|
|
22
|
+
initial_data_source: Annotated[str | None, Field(description="JSON string for the initial data source configuration including properties")] = None,
|
|
21
23
|
) -> str:
|
|
22
24
|
"""Create a new Notion database.
|
|
23
25
|
|
|
@@ -45,7 +47,9 @@ def create_database(
|
|
|
45
47
|
|
|
46
48
|
|
|
47
49
|
@mcp.tool()
|
|
48
|
-
def get_database(
|
|
50
|
+
def get_database(
|
|
51
|
+
database_id: Annotated[str, Field(description="The UUID of the database to retrieve")],
|
|
52
|
+
) -> str:
|
|
49
53
|
"""Retrieve a Notion database by its ID.
|
|
50
54
|
|
|
51
55
|
Note: In v2025-09-03 the response contains data_sources but NOT
|
|
@@ -63,11 +67,11 @@ def get_database(database_id: str) -> str:
|
|
|
63
67
|
|
|
64
68
|
@mcp.tool()
|
|
65
69
|
def update_database(
|
|
66
|
-
database_id: str,
|
|
67
|
-
title: str | None = None,
|
|
68
|
-
description: str | None = None,
|
|
69
|
-
icon: str | None = None,
|
|
70
|
-
cover: str | None = None,
|
|
70
|
+
database_id: Annotated[str, Field(description="The UUID of the database to update")],
|
|
71
|
+
title: Annotated[str | None, Field(description="JSON string for the new title rich-text array, e.g. '[{\"type\": \"text\", \"text\": {\"content\": \"New Title\"}}]'")] = None,
|
|
72
|
+
description: Annotated[str | None, Field(description="JSON string for the description rich-text array, e.g. '[{\"type\": \"text\", \"text\": {\"content\": \"A description\"}}]'")] = None,
|
|
73
|
+
icon: Annotated[str | None, Field(description="JSON string for the database icon, e.g. '{\"type\": \"emoji\", \"emoji\": \"📊\"}'")] = None,
|
|
74
|
+
cover: Annotated[str | None, Field(description="JSON string for the database cover, e.g. '{\"type\": \"external\", \"external\": {\"url\": \"https://...\"}}'")] = None,
|
|
71
75
|
) -> str:
|
|
72
76
|
"""Update a Notion database.
|
|
73
77
|
|
|
@@ -97,7 +101,9 @@ def update_database(
|
|
|
97
101
|
|
|
98
102
|
|
|
99
103
|
@mcp.tool()
|
|
100
|
-
def archive_database(
|
|
104
|
+
def archive_database(
|
|
105
|
+
database_id: Annotated[str, Field(description="The UUID of the database to archive")],
|
|
106
|
+
) -> str:
|
|
101
107
|
"""Archive a Notion database.
|
|
102
108
|
|
|
103
109
|
Args:
|
|
@@ -112,11 +118,11 @@ def archive_database(database_id: str) -> str:
|
|
|
112
118
|
|
|
113
119
|
@mcp.tool()
|
|
114
120
|
def query_database(
|
|
115
|
-
database_id: str,
|
|
116
|
-
filter: str | None = None,
|
|
117
|
-
sorts: str | None = None,
|
|
118
|
-
start_cursor: str | None = None,
|
|
119
|
-
page_size: int | None = None,
|
|
121
|
+
database_id: Annotated[str, Field(description="The UUID of the database to query")],
|
|
122
|
+
filter: Annotated[str | None, Field(description="JSON string for a filter object, e.g. '{\"property\": \"Status\", \"select\": {\"equals\": \"Done\"}}'")] = None,
|
|
123
|
+
sorts: Annotated[str | None, Field(description="JSON string for a list of sort objects, e.g. '[{\"property\": \"Created\", \"direction\": \"descending\"}]'")] = None,
|
|
124
|
+
start_cursor: Annotated[str | None, Field(description="Cursor for pagination")] = None,
|
|
125
|
+
page_size: Annotated[int | None, Field(description="Number of results per page")] = None,
|
|
120
126
|
) -> str:
|
|
121
127
|
"""Query a Notion database for pages/rows.
|
|
122
128
|
|
|
@@ -151,7 +157,9 @@ def query_database(
|
|
|
151
157
|
|
|
152
158
|
|
|
153
159
|
@mcp.tool()
|
|
154
|
-
def get_data_source(
|
|
160
|
+
def get_data_source(
|
|
161
|
+
data_source_id: Annotated[str, Field(description="The UUID of the data source to retrieve")],
|
|
162
|
+
) -> str:
|
|
155
163
|
"""Retrieve a Notion data source (includes properties).
|
|
156
164
|
|
|
157
165
|
Args:
|
|
@@ -166,8 +174,8 @@ def get_data_source(data_source_id: str) -> str:
|
|
|
166
174
|
|
|
167
175
|
@mcp.tool()
|
|
168
176
|
def update_data_source(
|
|
169
|
-
data_source_id: str,
|
|
170
|
-
properties: str | None = None,
|
|
177
|
+
data_source_id: Annotated[str, Field(description="The UUID of the data source to update")],
|
|
178
|
+
properties: Annotated[str | None, Field(description="JSON string for properties to update, e.g. '{\"Name\": {\"title\": {}}, \"Tags\": {\"multi_select\": {}}}'")] = None,
|
|
171
179
|
) -> str:
|
|
172
180
|
"""Update a Notion data source.
|
|
173
181
|
|
|
@@ -189,11 +197,11 @@ def update_data_source(
|
|
|
189
197
|
|
|
190
198
|
@mcp.tool()
|
|
191
199
|
def query_data_source(
|
|
192
|
-
data_source_id: str,
|
|
193
|
-
filter: str | None = None,
|
|
194
|
-
sorts: str | None = None,
|
|
195
|
-
start_cursor: str | None = None,
|
|
196
|
-
page_size: int | None = None,
|
|
200
|
+
data_source_id: Annotated[str, Field(description="The UUID of the data source to query")],
|
|
201
|
+
filter: Annotated[str | None, Field(description="JSON string for a filter object, e.g. '{\"property\": \"Status\", \"select\": {\"equals\": \"Done\"}}'")] = None,
|
|
202
|
+
sorts: Annotated[str | None, Field(description="JSON string for a list of sort objects, e.g. '[{\"property\": \"Created\", \"direction\": \"descending\"}]'")] = None,
|
|
203
|
+
start_cursor: Annotated[str | None, Field(description="Cursor for pagination")] = None,
|
|
204
|
+
page_size: Annotated[int | None, Field(description="Number of results per page")] = None,
|
|
197
205
|
) -> str:
|
|
198
206
|
"""Query rows in a Notion data source.
|
|
199
207
|
|
|
@@ -221,10 +229,10 @@ def query_data_source(
|
|
|
221
229
|
|
|
222
230
|
@mcp.tool()
|
|
223
231
|
def list_data_source_templates(
|
|
224
|
-
data_source_id: str,
|
|
225
|
-
name: str | None = None,
|
|
226
|
-
start_cursor: str | None = None,
|
|
227
|
-
page_size: int | None = None,
|
|
232
|
+
data_source_id: Annotated[str, Field(description="The UUID of the data source")],
|
|
233
|
+
name: Annotated[str | None, Field(description="Name filter for templates")] = None,
|
|
234
|
+
start_cursor: Annotated[str | None, Field(description="Cursor for pagination")] = None,
|
|
235
|
+
page_size: Annotated[int | None, Field(description="Number of results per page")] = None,
|
|
228
236
|
) -> str:
|
|
229
237
|
"""List templates for a Notion data source.
|
|
230
238
|
|
|
@@ -3,17 +3,19 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import json
|
|
6
|
-
from typing import Any
|
|
6
|
+
from typing import Annotated, Any
|
|
7
|
+
|
|
8
|
+
from pydantic import Field
|
|
7
9
|
|
|
8
10
|
from ..server import mcp, get_client, _parse_json, _error_response
|
|
9
11
|
|
|
10
12
|
|
|
11
13
|
@mcp.tool()
|
|
12
14
|
def create_page(
|
|
13
|
-
parent: str,
|
|
14
|
-
properties: str,
|
|
15
|
-
children: str | None = None,
|
|
16
|
-
template: str | None = None,
|
|
15
|
+
parent: Annotated[str, Field(description="JSON string for the parent object, e.g. '{\"type\": \"page_id\", \"page_id\": \"...\"}'")],
|
|
16
|
+
properties: Annotated[str, Field(description="JSON string for the page properties mapping, e.g. '{\"title\": [{\"text\": {\"content\": \"My Page\"}}]}'")],
|
|
17
|
+
children: Annotated[str | None, Field(description="JSON string for a list of block children to append. Cannot be used together with template.")] = None,
|
|
18
|
+
template: Annotated[str | None, Field(description="JSON string for a data-source template, e.g. '{\"type\": \"none\"}', '{\"type\": \"default\"}', or '{\"type\": \"template_id\", \"template_id\": \"<uuid>\"}'")] = None,
|
|
17
19
|
) -> str:
|
|
18
20
|
"""Create a new Notion page.
|
|
19
21
|
|
|
@@ -41,7 +43,9 @@ def create_page(
|
|
|
41
43
|
|
|
42
44
|
|
|
43
45
|
@mcp.tool()
|
|
44
|
-
def get_page(
|
|
46
|
+
def get_page(
|
|
47
|
+
page_id: Annotated[str, Field(description="The UUID of the page to retrieve")],
|
|
48
|
+
) -> str:
|
|
45
49
|
"""Retrieve a Notion page by its ID.
|
|
46
50
|
|
|
47
51
|
Args:
|
|
@@ -56,11 +60,11 @@ def get_page(page_id: str) -> str:
|
|
|
56
60
|
|
|
57
61
|
@mcp.tool()
|
|
58
62
|
def update_page(
|
|
59
|
-
page_id: str,
|
|
60
|
-
properties: str | None = None,
|
|
61
|
-
erase_content: bool | None = None,
|
|
62
|
-
icon: str | None = None,
|
|
63
|
-
cover: str | None = None,
|
|
63
|
+
page_id: Annotated[str, Field(description="The UUID of the page to update")],
|
|
64
|
+
properties: Annotated[str | None, Field(description="JSON string of properties to update, e.g. '{\"Name\": {\"title\": [{\"text\": {\"content\": \"New Title\"}}]}}'")] = None,
|
|
65
|
+
erase_content: Annotated[bool | None, Field(description="If true, clears ALL block content from the page. WARNING: This is destructive and irreversible.")] = None,
|
|
66
|
+
icon: Annotated[str | None, Field(description="JSON string for the page icon, e.g. '{\"type\": \"emoji\", \"emoji\": \"🎉\"}'")] = None,
|
|
67
|
+
cover: Annotated[str | None, Field(description="JSON string for the page cover, e.g. '{\"type\": \"external\", \"external\": {\"url\": \"https://...\"}}'")] = None,
|
|
64
68
|
) -> str:
|
|
65
69
|
"""Update a Notion page's properties, icon, or cover.
|
|
66
70
|
|
|
@@ -93,7 +97,9 @@ def update_page(
|
|
|
93
97
|
|
|
94
98
|
|
|
95
99
|
@mcp.tool()
|
|
96
|
-
def archive_page(
|
|
100
|
+
def archive_page(
|
|
101
|
+
page_id: Annotated[str, Field(description="The UUID of the page to archive")],
|
|
102
|
+
) -> str:
|
|
97
103
|
"""Archive (soft-delete) a Notion page.
|
|
98
104
|
|
|
99
105
|
Args:
|
|
@@ -107,7 +113,10 @@ def archive_page(page_id: str) -> str:
|
|
|
107
113
|
|
|
108
114
|
|
|
109
115
|
@mcp.tool()
|
|
110
|
-
def move_page(
|
|
116
|
+
def move_page(
|
|
117
|
+
page_id: Annotated[str, Field(description="The UUID of the page to move")],
|
|
118
|
+
parent: Annotated[str, Field(description="JSON string for the new parent object, e.g. '{\"type\": \"page_id\", \"page_id\": \"...\"}'")],
|
|
119
|
+
) -> str:
|
|
111
120
|
"""Move a Notion page to a new parent.
|
|
112
121
|
|
|
113
122
|
IMPORTANT: The parent parameter must be passed as a JSON-encoded string, NOT as an object.
|
|
@@ -3,17 +3,20 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import json
|
|
6
|
+
from typing import Annotated
|
|
7
|
+
|
|
8
|
+
from pydantic import Field
|
|
6
9
|
|
|
7
10
|
from ..server import mcp, get_client, _parse_json, _error_response
|
|
8
11
|
|
|
9
12
|
|
|
10
13
|
@mcp.tool()
|
|
11
14
|
def search(
|
|
12
|
-
query: str | None = None,
|
|
13
|
-
filter: str | None = None,
|
|
14
|
-
sort: str | None = None,
|
|
15
|
-
start_cursor: str | None = None,
|
|
16
|
-
page_size: int | None = None,
|
|
15
|
+
query: Annotated[str | None, Field(description="Text query to search for")] = None,
|
|
16
|
+
filter: Annotated[str | None, Field(description="JSON string for a filter object, e.g. '{\"value\": \"page\", \"property\": \"object\"}'")] = None,
|
|
17
|
+
sort: Annotated[str | None, Field(description="JSON string for a sort object, e.g. '{\"direction\": \"ascending\", \"timestamp\": \"last_edited_time\"}'")] = None,
|
|
18
|
+
start_cursor: Annotated[str | None, Field(description="Cursor for pagination")] = None,
|
|
19
|
+
page_size: Annotated[int | None, Field(description="Number of results per page")] = None,
|
|
17
20
|
) -> str:
|
|
18
21
|
"""Search Notion pages and databases.
|
|
19
22
|
|
|
@@ -3,14 +3,17 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import json
|
|
6
|
+
from typing import Annotated
|
|
7
|
+
|
|
8
|
+
from pydantic import Field
|
|
6
9
|
|
|
7
10
|
from ..server import mcp, get_client, _error_response
|
|
8
11
|
|
|
9
12
|
|
|
10
13
|
@mcp.tool()
|
|
11
14
|
def get_users(
|
|
12
|
-
start_cursor: str | None = None,
|
|
13
|
-
page_size: int | None = None,
|
|
15
|
+
start_cursor: Annotated[str | None, Field(description="Cursor for pagination")] = None,
|
|
16
|
+
page_size: Annotated[int | None, Field(description="Number of results per page")] = None,
|
|
14
17
|
) -> str:
|
|
15
18
|
"""List all users in the Notion workspace.
|
|
16
19
|
|
|
File without changes
|
|
File without changes
|
{ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/requires.txt
RENAMED
|
File without changes
|
{ldraney_notion_mcp-0.1.3 → ldraney_notion_mcp-0.1.4}/src/ldraney_notion_mcp.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|