AI tools

CashSDK is agent-friendly. Connect your coding agent to operate your account and search the docs.

CashSDK is built to be driven by AI coding agents. Instead of clicking through the dashboard, you can ask an agent to model your catalog, generate a paywall, register a webhook, or tail live events, all through the same REST API the dashboard uses.

There are three surfaces that make this work.

The MCP server#

CashSDK exposes a hosted Model Context Protocol server. There is nothing to install. Point your client at the URL and send a token.

The MCP server takes actions in your workspace, so it needs a token; it does exactly as much as that token allows and no more. llms.txt is read-only documentation, so it's safe to point anything at it.

llms.txt#

Every docs page is also published as plain text for agents that don't speak MCP. Point any model at llms.txt (an index) or llms-full.txt for the entire corpus in one file.

Connect your client#

What you can ask an agent to do#

Once connected, natural-language requests map directly onto CashSDK tools:

  • Set up a catalog: "Create a monthly Pro subscription with a pro entitlement."
  • Generate a paywall: "Build a paywall from the trial template and add it to onboarding."
  • Register a webhook: "Register https://api.myapp.com/hooks/cashsdk and send a test event."
  • Tail events: "Show me the last purchases and renewals for this app."
  • Check setup: "What's left on my go-live checklist?"

Next steps#