Paydirt MCP
OfficialThe Paydirt MCP server is an agent-native control plane for installing and managing Paydirt, an iOS SDK for collecting user feedback (feature suggestions, trial cancellations, subscription cancellations), with Slack integration and AI-powered feedback analysis.
Setup & Authentication: Begin or finish setup (browser authorization flow), use compatibility alias, and run health checks to verify API connectivity/credentials.
App Management: List, create, get, and update Paydirt apps (name, bundle ID, description, AI context).
Feedback Form Management: List, create, get, update, toggle enable/disable, delete, and add feedback forms at specific iOS placements (screen, action, trigger) with returned Swift code.
Feedback Reading & Analysis: Get raw responses with cursor-based incremental reads and filters; retrieve AI-generated summaries; ask natural-language analytical questions; get a scheduled feedback digest.
Slack Integration: Connect Slack via OAuth, check Slack status, list channels, assign forms to channels (including auto-created #paydirt-cancellation-feedback).
Health Monitoring: Verify API connectivity and authentication.
Integrates with Slack to deliver feedback messages and summaries, including configuring Slack channels for form delivery and connecting Slack workspace.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Paydirt MCPInstall Paydirt in this iOS app for feedback and cancellation."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Paydirt MCP
MCP Registry name: io.github.Paydirt-AI/paydirt-mcp
The agent-native installer and control plane for Paydirt, an iOS SDK for Suggest a Feature, trial cancellation, and subscription cancellation.
Paydirt MCP lets a coding agent create forms, place them in an iOS app, connect Slack, build and launch the host app, leave a Debug-only three-form setup check open for immediate verification, and read raw feedback. Paydirt supports native StoreKit, RevenueCat, Superwall, app-owned billing, and apps without subscriptions.
A generic installation first confirms cancellation feedback and Suggest a Feature, then creates the selected forms after Google sign-in. Browser onboarding asks whether completed feedback should go to Slack and coding agents (recommended), Slack only, or coding agents only. The agent then builds and opens the three-test setup check on a simulator or connected iPhone.
Install in Codex
codex mcp add paydirt -- npx --yes --prefer-online paydirt-mcp@latestRestart Codex after adding the server. Then ask:
Add Paydirt and show me it working.
To remove the server later:
codex mcp remove paydirtRelated MCP server: Slack MCP Server
Install in Claude Code
claude mcp add paydirt -- npx --yes --prefer-online paydirt-mcp@latestThe public Paydirt Claude plugin marketplace is also included in this repository. After the public repository is available:
/plugin marketplace add Paydirt-AI/paydirt-mcp
/plugin install paydirt@paydirt-pluginsThe plugin bundles both the Paydirt installation workflow and the pinned MCP server configuration.
Other MCP hosts can launch the same stdio command:
{
"mcpServers": {
"paydirt": {
"command": "npx",
"args": ["--yes", "--prefer-online", "paydirt-mcp@latest"]
}
}
}Requires Node.js 18 or newer.
Authentication
Authentication is an explicit, headless-safe two-step flow:
The agent inspects the app and calls
paydirt_begin_setupwithout confirmation to receive the recommended form plan, then asks the developer to approve Add all three, Add both cancellation forms, or Customize. An explicit request naming the forms already counts as confirmation.After confirmation, the agent calls
paydirt_begin_setupwithform_plan_confirmed: true. It immediately receives anauthorization_url,session_id, and exactfinish_arguments. The MCP process never launches a browser, sleeps, or polls.Open
authorization_urlin any browser and sign in to Paydirt with Google. Paydirt creates the app and selected forms, then asks for Slack and coding agents (recommended), Slack only, or coding agents only.When Slack is selected, complete Slack OAuth. Paydirt provisions
#paydirt-suggest-a-featureand#paydirt-cancellations, assigns the corresponding forms, and verifies the routing before setup completes.The agent calls
paydirt_finish_setup, respects the saved delivery choice, installs Paydirt, builds and launches the app, and leaves the three-test setup check visibly open. The developer submits all three tests; Slack setup is complete only when 3/3 reach the expected channels.The coding-agent delivery choices disclose and include a read-only daily brief. After verification, a host with native scheduling creates a 9:00 AM local task that calls
paydirt_get_feedback_digest; unsupported hosts return the reusable prompt and report the limitation without pretending a schedule was created. Slack-only delivery does not include it.
paydirt_setup remains as a compatibility alias: call it without session_id to begin and with session_id to finish.
Credentials are saved locally at ~/.paydirt/credentials.json with owner-only permissions. They are not written to an app repository or sent anywhere except api.paydirt.ai. For ephemeral environments, set PAYDIRT_AUTH_TOKEN instead.
Daily feedback brief
paydirt_get_feedback_digest returns a read-only period summary designed for scheduled tasks: total completed responses, Suggest a Feature, Trial Cancellation, Subscription Cancellation, other feedback, the change from the preceding equal period, and concise highlights. A quiet day explicitly reports zero. Digests never create coding tasks or modify an app automatically.
Natural agent workflows
Add a form at an in-app action
Ask:
Add a feedback form titled “Export Feedback” after a successful export and send it to #product-feedback.
The agent should use paydirt_add_feedback_form. It reuses an existing custom form with the same normalized title, preserves the requested placement, resolves Slack when possible, and returns the exact Swift presentation call. A remote form is not considered installed until the agent edits and builds the host app.
Supported triggers are user taps, successful in-app actions, screen appearance, and app-owned custom conditions.
Install cancellation feedback
The agent inspects the app before setup and selects the existing subscription source of truth:
Native StoreKit uses Paydirt's built-in StoreKit integration.
RevenueCat uses installer-managed compatibility source and the familiar
Paydirt.enableRevenueCatIntegration(...)call, avoiding duplicate package dependencies.Native StoreKit covers ordinary App Store subscriptions, including apps where Superwall is only the paywall.
App-owned billing emits Paydirt's provider-independent cancellation event.
Apps without subscriptions can install manual feedback alone.
The agent must preserve all existing host-app feedback forms, buttons, screens, handlers, destinations, and side effects. It may only add or change regular feedback when the user explicitly requests that exact placement. If a requested cancellation bridge is blocked, the agent reports the narrow provider blocker, preserves the existing app behavior, and completes every unaffected requested form.
An older RevenueCat version is not a blocker. The agent keeps the installed version and adapts the installer-managed integration source to the customer-info or purchaser-info API already compiling in the app. Newer optional metadata may be omitted, or Paydirt can be called from the app's existing confirmed RevenueCat cancellation path.
Deliver to Slack and coding agents
Slack receives one message after a conversation finishes, containing the exact raw questions and answers. An optional AI summary may follow the raw conversation. Coding-agent tools expose responses read-only; Paydirt does not automatically take action on feedback.
Tools
Tool | Purpose |
| Start non-blocking browser authorization |
| Check authorization once and return the installation contract |
| Backward-compatible begin/finish alias |
| Create/reuse a named form and return its host-app placement contract |
| Manage apps |
| Manage forms |
| Read raw conversations using a stable cursor |
| Read optional AI analysis |
| Connect and configure Slack delivery |
| Verify API connectivity and credentials |
Development
npm ci
npm test
npm pack --dry-runThe repository intentionally contains only the public MCP client. Paydirt's API, dashboard, infrastructure, and operational configuration remain private.
Official MCP Registry metadata lives at .mcp/server.json. It describes the current npm stdio package; Paydirt does not claim a remote MCP transport until a public HTTPS endpoint is deployed and verified.
See SUPPORT.md for support, SECURITY.md before reporting a vulnerability, and CONTRIBUTING.md before opening a pull request.
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants to build, test, run, and manage Apple platform projects (iOS, macOS, tvOS, watchOS, visionOS) directly through Xcode. Provides comprehensive control over Xcode projects, Swift packages, simulators, and development workflows without leaving your editor.5151MIT
- Flicense-quality-maintenanceEnables complete Slack integration through natural language in Cursor IDE, supporting message sending, channel management, direct messaging, user lookup, reactions, and message search using the Slack API.
- Alicense-qualityCmaintenanceEnables AI agents to manage App Store Connect apps, including registering bundle IDs, uploading metadata and screenshots, setting age ratings, managing TestFlight groups and testers, and submitting apps for review.MIT
- Alicense-qualityDmaintenanceGives AI agents the ability to interact with iOS simulators through 21+ tools for mobile app testing.21,781MIT
Related MCP Connectors
Human-in-the-loop for AI coding agents — ask questions, get approvals via Slack.
AI agent tools for FreeAppStore: deploy status, SDK docs, app info, platform guide.
Helps AI coding agents integrate MetaMask Embedded Wallets (Web3Auth) SDKs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Paydirt-AI/paydirt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server