arcade-mcp/toolkits/notion/arcade_notion_toolkit/tools/__init__.py
Eric Gustin 7edaa0a996
Update Notion Toolkit (#309)
1. The Arcade Worker doesn't like it when the package name is different
than the directory name. This PR renames the directory from
`arcade_notion` to `arcade_notion_toolkit`
2. `Notion` is not a well-known provider name in `arcade-ai==1.0.5`,
I've updated the dep to represent this.
2025-03-17 21:15:00 -07:00

19 lines
430 B
Python

from arcade_notion_toolkit.tools.pages import (
create_page,
get_page_content_by_id,
get_page_content_by_title,
)
from arcade_notion_toolkit.tools.search import (
get_object_metadata,
get_workspace_structure,
search_by_title,
)
__all__ = [
"create_page",
"get_object_metadata",
"get_page_content_by_id",
"get_page_content_by_title",
"search_by_title",
"get_workspace_structure",
]