paybito-mcp
v0.2.14
Published
PayBito infrastructure knowledge helper for AI agents — injects PayBito API expertise (Resources + Prompts + read-only knowledge tools, no live actions) into any MCP-capable AI platform.
Downloads
1,674
Maintainers
Readme
paybito-mcp — PayBito Knowledge MCP Server (TypeScript)
The TypeScript/Node build of the PayBito knowledge helper — same behavior as the Python
package, distributed for npx. It injects PayBito API expertise (Resources + Prompts +
read-only knowledge tools) so an AI agent can write PayBito integration code. It never
calls PayBito's live API.
Use it (no install)
npx -y paybito-mcpAdd to any MCP client (Claude Code/Desktop, Cursor, VS Code, Codex, Gemini CLI, Windsurf):
{ "mcpServers": { "paybito": { "command": "npx", "args": ["-y", "paybito-mcp"] } } }Claude Code one-liner:
claude mcp add paybito -- npx -y paybito-mcpWhat it exposes
- Tools (read-only, documentation only):
paybito_overview,paybito_search,paybito_get_operation,paybito_get_domain,paybito_get_auth,paybito_list_playbooks,paybito_get_playbook. - Resources:
paybito://overview,paybito://auth,paybito://domains,paybito://domain/{slug},paybito://operation/{operationId},paybito://playbook/{name}. - Prompts:
integrate_paybito,use_playbook,add_payment_button.
Develop / build
The knowledge data (data/model.json, playbooks/) is generated by the Python package
(paybito-build) and synced here. The single source of truth is the Python build.
npm install
npm run sync # copy model.json + playbooks from ../src/paybito_mcp
npm run build # tsc -> dist/
node dist/server.jsnpm publish runs prepublishOnly (sync + build) so the tarball is self-contained.
