Add WhatSetter third-party MCP plugin - #389
Open
devlikemasta wants to merge 1 commit into
Open
devlikemasta wants to merge 1 commit into
devlikemasta wants to merge 1 commit into
Conversation
WhatSetter is an AI appointment setter on WhatsApp. The plugin points at WhatSetter's hosted Streamable HTTP MCP server (https://mcp.whatsetter.com/mcp, OAuth 2.1 with DCR and PKCE, nothing to configure) and bundles the whatsetter skill: operating rules, playbooks, and the API's error table. Registers the plugin in .cursor-plugin/marketplace.json and the README table.
devlikemasta
force-pushed
the
add-whatsetter
branch
from
September 17, 2026 08:17
c59520e to
1c32d3b
Compare
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
whatsetterplugin underthird_party/whatsetter/, pointing at WhatSetter's hosted MCP server (https://mcp.whatsetter.com/mcp) over Streamable HTTP. WhatSetter is an AI appointment setter on WhatsApp; the plugin lets agents work the inbox and the leads it handles, review booked meetings, import contacts, pause or resume campaigns, and, with explicit approval, send a WhatsApp message from a connected number.WWW-Authenticate+/.well-known/oauth-protected-resource), the same model as the Intercom plugin: no API key, no client ID, no template variable. On the consent page the user pastes a WhatSetter API key whose scopes they chose; Cursor only holds a revocable token.whatsetterskill (skills/whatsetter/SKILL.md): operating rules, playbooks (briefing, inbox triage, import, bookings, campaigns, CRM sync, groups) and the API's real error table, so the agent reads tool results correctly and asks before anything is sent. Markdown only: no hooks, no scripts, no commands..cursor-plugin/marketplace.jsonand the root README table (Integrations, author WhatSetter).Notes for reviewers
S256PKCE,authorization_code+refresh_token). An unauthenticatedPOST /mcpanswers 401 withresource_metadatainWWW-Authenticate.readOnlyHint/destructiveHintannotations.send_whatsapp_messageis the only tool that reaches a person; anti-ban limits (lead_not_contacted,quota_exceeded, idempotency keys) are enforced by the API, not by the prompt.Test plan
node scripts/validate-plugins.mjspasses (afternpm install --no-save ajv ajv-formats)~/.cursor/plugins/local/whatsetter): the plugin, its MCP server and thewhatsetterskill are listed under Customize; the first tool call opens the Connect to WhatSetter page; after approvalwhoamireturns the workspace and 23 tools load/add-plugin whatsetter, complete the Connect to WhatSetter stepNote
Medium Risk
New integration exposes scoped tools that can message leads, change campaigns, and manage webhooks on a user-connected WhatSetter workspace; repo impact is additive packaging only.
Overview
Adds the WhatSetter third-party Cursor plugin under
third_party/whatsetter/and registers it in.cursor-plugin/marketplace.jsonand the root README integrations table.The package wires agents to WhatSetter’s hosted Streamable HTTP MCP at
https://mcp.whatsetter.com/mcpviamcp.jsonandplugin.json(Cursor 3.13.0+, author WhatSetter). Auth is server-discovered OAuth 2.1 with DCR/PKCE—no API key or client ID in the repo manifest.It also ships the
whatsetterskill (skills/whatsetter/SKILL.md): operating rules (explicit approval beforesend_whatsapp_message, no cold outreach, quota handling), playbooks (briefing, inbox, imports, campaigns, bookings, CRM/webhooks, groups), and API error handling. Supporting files are README, CHANGELOG, and MIT LICENSE.Reviewed by Cursor Bugbot for commit 1c32d3b. Bugbot is set up for automated code reviews on this repo. Configure here.