Add Notion plugin: tasks, polling app, MCP server - #1506
Closed
cosmicBboy wants to merge 7 commits into
Closed
Conversation
Adds plugins/notion (flyteplugins-notion), a Notion integration for Flyte: - NotionClient: async client covering search, pages, databases, queries, blocks, page creation (database rows and child pages), updates, and archiving, with property/block builder helpers and 429 retries. - NotionAppEnvironment: setup/management dashboard plus a poll endpoint for change detection — Notion has no webhooks, so the app queries a database for pages edited since a cursor, normalizes them into NotionEvents, and dispatches to handlers. Protected by an X-Poll-Token shared secret. - launch_task: idempotent event-driven run launching with dedupe labels keyed on page + edit timestamp. - MCP server builder exposing the read/write surface to agents on Flyte (read-only by default, archive_page opt-in destructive). Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
- The poll token compares as bytes: a non-ASCII X-Poll-Token made compare_digest raise TypeError, turning a 401 into a 500. ASGI servers hand Starlette raw header bytes, which it decodes as latin-1, so a non-ASCII token really does reach the comparison. - Retry-After is parsed defensively and clamped; an HTTP-date value raised ValueError, and a large value would have slept unbounded. - The dashboard's recent-events table read the 25 oldest events, not the newest, so it froze after 25 events; database ids are now escaped. - _dispatch docstring described webhook redelivery; this plugin polls, so it now describes overlapping poll windows instead. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VKZrTNjjWVzTZUxDFbn4Nk Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
- launch_task and blocking_run are now async-first, wrapped with flyte's @Syncify. Handlers await launch_task.aio(...), so a launch no longer blocks the app's event loop while every other in-flight request waits behind it. The synchronous form still works for scripts. - Idempotency is now entirely label-based. The run-name allocation (probe up to 32 candidate names via Run.get, then launch under the winner) is gone, along with run_name_for/RUN_NAME_MAX and the prefix and run_name_base arguments. Names race, cap how many runs one key can ever have, and were never identity — the control plane assigns them now. - The dedupe key is documented as caller-supplied: dedupe_key() is a default, not a requirement. - Examples and READMEs use the await form. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VKZrTNjjWVzTZUxDFbn4Nk Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
Wraps the 13 client methods with flyte's @Syncify, matching how the SDK itself exposes Run.listall, flyte.run and flyte.serve. Each method now has two forms: `client.foo(...)` blocks, `await client.foo.aio(...)` does not. - Adds __enter__/__exit__ so the blocking form is actually usable. They run __aenter__/__aexit__ on syncify's background loop -- the same loop the syncified methods run on -- so the httpx.AsyncClient is created and used on a single loop. - Internal self-calls use .aio(). The blocking form would deadlock when called from syncify's own loop thread. - The MCP tool bridge uses .aio(). `await getattr(client, name)(...)` would otherwise raise TypeError on the returned value, and would stall the MCP server's event loop for the duration of every tool call. - Tests, examples and READMEs use .aio() on async paths, and document both forms plus when not to reach for the blocking one. The syncified client type-checks clean: mypy resolves methods to SyncFunction[...] and the error count on the package is unchanged. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VKZrTNjjWVzTZUxDFbn4Nk Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
The class docstring still demonstrated the pre-syncify async call, which no longer works as written. It now shows the async form with .aio() and the blocking form under a plain `with`, and says which belongs where. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VKZrTNjjWVzTZUxDFbn4Nk Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
cosmicBboy
force-pushed
the
nielsb/integrations-notion
branch
from
September 1, 2026 13:31
88ad3b8 to
e00aaf9
Compare
Adds flyteplugins.notion.events, so handlers register against constants
instead of hand-copied strings:
@app_env.on_event(events.Page.EDITED)
Follows the ActionPhase pattern in flyte.models: `str` enums grouped by
event type, so a member is drop-in wherever a pattern string is accepted and
a typo fails at import rather than by silently never matching. Raw strings
still work, for events the constants do not cover yet.
- The enum base pins __str__/__format__ to str's. Python 3.11+ would
otherwise render members as "Class.MEMBER" rather than the wire value,
which would corrupt the dashboard and /api/status output.
- Tests assert the constants equal what the parsers actually produce, that
ANY is the bare event type every action shares as a prefix, and that no
value appears in two classes.
- Examples, READMEs, module docstrings and the on_event docstring use them.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01VKZrTNjjWVzTZUxDFbn4Nk
Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
A step-by-step pass a human can follow against a real account: create the credentials, verify the client standalone, deploy the task the receiver launches, run it directly, deploy the app, wire the provider up, trigger a real event, and confirm idempotency. Ends with a troubleshooting table mapping each failure mode to its cause. Ordered so each step fails in isolation: the client is exercised before the platform, and the launched task is deployed before the app that looks it up. Also adds react_to_notion_changes.py. Notion was the only plugin whose app environment had no runnable example, so the guide had nothing to deploy. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VKZrTNjjWVzTZUxDFbn4Nk Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
plugins/notion(flyteplugins-notion), a Notion integration for Flyte 2.What's included
Read/write from tasks —
NotionClient, an async client covering search, pages, databases, database queries, blocks, page creation (database rows and child pages), updates, and archiving, plus exported property/block builder helpers (title_property,select_property,paragraph_block, ...). Errors carry Notion's error code inNotionAPIError; 429s are retried. Credentials come from a mountedflyte.Secret(NOTION_TOKEN).React to Notion changes — Notion has no webhooks, so
NotionAppEnvironmentdetects changes by polling: a setup/management dashboard (/) plus a poll endpoint (GET /api/poll?database_id=...&since=..., protected by anX-Poll-Tokenshared secret) that queries a database for pages edited since a cursor, normalizes them intoNotionEventobjects, and dispatches toon_eventhandlers.launch_tasklaunches runs idempotently via dedupe labels keyed on page + edit timestamp, so overlapping polls never double-process an edit.examples/poll_for_updates.pyshows the webhook-free alternative: aflyte.Triggerscheduled task callingquery_database_sincedirectly.MCP server for agents on Flyte — the read/write surface doubles as MCP tools via
build_mcp_server/notion_mcp_app_env. Read-only by default;read_only=Falseadds page creation/updates/block appending;include_destructive=Trueadditionally exposesarchive_page. Tool annotations come from the registry. Change detection is intentionally not an MCP tool — that stays with the app environment or a scheduled task.Tests
56 tests covering the client (respx-mocked Notion API, including
last_edited_timefilter construction and title-property nesting), property/block helpers, event dedupe semantics, the MCP tool registry/server, dispatch idempotency, and the app dashboard/poll endpoint (token enforcement, database allowlist, handler dispatch).Examples
examples/write_to_notion.py— database rows and child pages from tasksexamples/poll_for_updates.py— trigger-based change pollingexamples/notion_mcp_server.py— MCP server for agentsReview pass
A follow-up commit fixes issues found while reviewing this branch.
Robustness and security
hmac.compare_digestraisesTypeErroronstroperands containing non-ASCII, andX-Poll-Tokenis attacker-controlled: ASGI servers hand Starlette raw header bytes which it decodes as latin-1, so a crafted header turned a clean 401 into a 500.Retry-Afteris parsed defensively and clamped at 60s. The header may carry an HTTP-date, which raisedValueError, and a large value would previously have slept unbounded.Dashboard and docs
[:25]on a deque that appends on the right — so it froze after the first 25 events._dispatchmodule docstring described webhook redelivery; this plugin polls, so it now describes overlapping poll windows instead.2 new tests cover these.
Follow-up: async launching and label-only idempotency
launch_taskno longer blocks the app's event loop. It andblocking_runare now async-first, wrapped with flyte's@syncify, so handlersawait launch_task.aio(...). Previously the synchronous call stalled the whole event loop for the duration of two control-plane round-trips plus a launch — with every other in-flight webhook queued behind it, against sender timeouts measured in seconds. The synchronous form still works for scripts. A regression test asserts four concurrent launches overlap; against the old blocking call it measures 0.81s instead of 0.42s and fails.Idempotency is now purely label-based. The run-name allocation is gone — it probed up to 32 candidate names via
Run.getbefore launching under the winner. That raced with concurrent launches, silently capped how many runs one dedupe key could ever have, and treated a name as an identity it never was. Runs now carry only thededupe=<key>label and the control plane assigns the name.run_name_for,RUN_NAME_MAX, and theprefix/run_name_basearguments are removed.The dedupe key is explicitly caller-supplied.
dedupe_key()is a sensible default, not a requirement — any string chooses a different idempotency scope.The module docstring is also honest about the residual race: the label check is a read followed by a launch, so two simultaneous deliveries of one event can both launch. Redeliveries are seconds to minutes apart and dedupe reliably; closing the concurrent case needs a compare-and-set the control plane does not expose.
Follow-up: sync and async call forms on
NotionClientThe 13 client methods are wrapped with flyte's
@syncify, so each has two call forms — matching how the SDK itself exposesRun.listall,flyte.run, andflyte.serve:__enter__/__exit__were added so the blocking form is usable at all. They run__aenter__/__aexit__on syncify's background loop — the same loop the syncified methods run on — so thehttpx.AsyncClientis created and used on a single loop rather than straddling two.Two call sites had to move to
.aio()for correctness, not just style. Internalself.calls would otherwise deadlock, since syncify raises on a blocking call made from its own loop thread. And the MCP tool bridge (await getattr(client, name)(...)) would raiseTypeError: object dict can't be used in 'await' expressionon the returned value — and, had it not raised, would have stalled the MCP server's event loop for the duration of every tool call. Measured: 0 event-loop ticks during one blocking call.The dynamic
sync_*-method alternative was rejected: it works at runtime but both mypy and ty report"NotionClient" has no attribute "sync_..."and fall back toAny, so every typed caller breaks.@syncifyin place resolves toSyncFunction[[...], ...]in both checkers. The package's mypy error count is unchanged at 12, all pre-existing, none in_client.py.Tests, examples, and READMEs use
.aio()on async paths and document both forms, including when not to reach for the blocking one.Follow-up: typed event constants
on_eventno longer needs hand-copied strings:flyteplugins.notion.eventsadds 1 classes / 1 constants, following theActionPhasepattern inflyte.models—strenums grouped by event type, so a member drops in wherever a pattern string is accepted and a typo fails at import rather than by silently never matching. Polling yields a single event type today; the constant keeps registration consistent with the other plugins. Raw strings still work, for events the constants do not cover yet.The enum base pins
__str__/__format__tostr's. Without that, Python 3.11+ renders members asClass.MEMBERrather than the wire value — which would have leaked enum names into the dashboard and/api/status, since handler patterns flow into both.Tests assert the constants equal what the parser actually produces (through the app's own
_matches), that everyANYis the bare type its actions prefix, and that no value appears in two classes.Follow-up: an end-to-end Testing guide
The README now ends with a numbered walkthrough against a real account, ordered so each step fails in isolation — exercise the client standalone before involving the platform, deploy the launched task before the app that looks it up, run it directly before any webhook is in play. Then wire up the provider, trigger a real event, and check the four places evidence lands: the provider's delivery log,
/api/events,flyte get runs, and the resource itself. It ends with a troubleshooting table mapping each symptom to its cause, since 401, 503, and "200 but no run" are three different failures.It also walks through the idempotency behaviour by hand, which is the part unit tests can only simulate.
Writing the guide surfaced a gap and it is fixed here:
react_to_notion_changes.py— Notion was the only plugin whose app environment had no runnable example was looked up by name but defined nowhere, so anyone following the README end to end would have hit a task-not-found error at the first real event.Verified mechanically rather than by eye: every referenced example path resolves, every
flyte create secretname matches the actual_config.pydefault, everyflyte deploy <file> <env>names a realTaskEnvironment, everyflyte runtask is defined, and every example file still executes.