[DEVREL-2647] Add data_webhook_tool for Webflow webhook management#83
Merged
viratatwebflow merged 2 commits intosaifrom Mar 12, 2026
Merged
[DEVREL-2647] Add data_webhook_tool for Webflow webhook management#83viratatwebflow merged 2 commits intosaifrom
viratatwebflow merged 2 commits intosaifrom
Conversation
- Introduced `registerWebhookTools` to the tools registration process, allowing for improved webhook management. - Updated the tools index to export the new webhook tools for broader accessibility.
memo-pineda
reviewed
Mar 12, 2026
| @@ -0,0 +1,209 @@ | |||
| import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; | |||
| import { WebflowClient } from "webflow-api"; | |||
| import { z } from "zod/v3"; | |||
There was a problem hiding this comment.
I think only v3.25 and up has v3 package so I think this needs to be bumped. Fwiw, I think it should still work since cloudflare mcp repo already uses 3.25 but good to be safe.
Collaborator
Author
There was a problem hiding this comment.
Yes make sense, let use the exact dependency.
memo-pineda
approved these changes
Mar 12, 2026
memo-pineda
left a comment
There was a problem hiding this comment.
Working as expected, but I did need to bump zod so let's do that
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.
Summary
This PR introduces
data_webhook_tool, a new MCP data tool for managing Webflow webhooks via the Data API.list_webhooks,create_webhook,get_webhook,delete_webhookTest plan
data_webhook_toolregisters correctly via MCP clientlist_webhookswith a valid site IDcreate_webhookwith a valid trigger type and URLget_webhookanddelete_webhookwith a valid webhook ID