paybito-mcp injects exact PayBito API knowledge — endpoints, auth, request shapes — into any AI assistant, so it writes integration code that works the first time. Read-only: it never touches funds, keys, or balances.
Pick the AI app you use. Each tab gives you the complete guide — from installing prerequisites to your first prompt. No coding experience needed.
Antigravity is Google's AI-powered coding IDE. It supports MCP servers natively — connect PayBito once and it's available in every conversation.
If you already have Antigravity IDE installed, skip to Step 2.
Node.js is needed to run the PayBito MCP package. If you already have it, skip to Step 3.
Win+R, type cmd, press Enter)node --version and press Enter. You should see a version number like v22.x.xCmd+Space, type "Terminal", press Enter)node --version and press Enter. You should see a version number like v22.x.xsudo apt update && sudo apt install -y nodejs npmsudo dnf install -y nodejs npmnode --version — you should see v18+If your distro's Node is too old, use NodeSource for the latest LTS.
.agents folderIn the root of your project directory, create a new folder named .agents.
mcp_config.jsonInside the .agents folder, create a file named mcp_config.json and paste this config:
{
"mcpServers": {
"paybito": {
"command": "npx",
"args": ["-y", "paybito-mcp"]
}
}
}
Restart your Antigravity IDE. Then open the chat and start by saying:
# type this in Antigravity's chat
use paybito mcp
Antigravity will load the PayBito MCP server and guide you through the integration!
Claude Desktop supports MCP servers natively. Connect PayBito once and it's available in every conversation.
If you already have Claude Desktop, skip to Step 2.
Node.js is needed to run the PayBito MCP package.
Win+R, type cmd, Enter)node --version — you should see v22.x.xnode --versionsudo apt update && sudo apt install -y nodejs npmnode --versionClaude Desktop stores its MCP config in a JSON file. Open it (create it if it doesn't exist):
# Open this file (press Win+R, paste the path) %APPDATA%\Claude\claude_desktop_config.json
# Open this file in Finder or Terminal
~/Library/Application Support/Claude/claude_desktop_config.json
Add this JSON to the file (or replace its contents if it's empty):
{
"mcpServers": {
"paybito": {
"command": "npx",
"args": ["-y", "paybito-mcp"]
}
}
}
Save the file and restart Claude Desktop.
After restart, look for the 🔌 MCP icon in Claude's input area — it shows connected servers. You should see "paybito" listed. Then type:
Use PayBito MCP. Ask me what I'm building so you can help me integrate PayBito's APIs.
Claude will pull the PayBito tools and resources, then walk you through building your integration!
Cursor is an AI-powered code editor. Add PayBito MCP so Cursor's AI assistant knows PayBito's APIs inside-out.
If you already have Cursor installed, skip to Step 2.
chmod +x Cursor.AppImage and run itNode.js is needed to run the PayBito MCP package. If you already have it, skip to Step 3.
node --version to verifynode --versionsudo apt update && sudo apt install -y nodejs npmnode --versionIn your project folder, create a file at .cursor/mcp.json (or globally at ~/.cursor/mcp.json):
# run this in your project folder (Command Prompt) mkdir .cursor notepad .cursor\mcp.json
# run this in your project folder (Terminal) mkdir -p .cursor nano .cursor/mcp.json
{
"mcpServers": {
"paybito": {
"command": "npx",
"args": ["-y", "paybito-mcp"]
}
}
}
Save the file, then restart Cursor.
Open Cursor's AI chat (Ctrl+L) and type:
Use PayBito MCP. Initialize PayBito and ask me what I'm building.
Cursor's AI will connect to PayBito MCP and start guiding you through your integration!
VS Code with GitHub Copilot supports MCP servers in Agent mode. Add PayBito so Copilot knows the APIs.
If you already have them installed, skip to Step 2.
Node.js is needed to run the PayBito MCP package.
node --version to verifynode --versionsudo apt update && sudo apt install -y nodejs npmnode --versionIn your project folder, create .vscode/mcp.json:
# run in your project folder (Command Prompt) mkdir .vscode notepad .vscode\mcp.json
# run in your project folder (Terminal) mkdir -p .vscode nano .vscode/mcp.json
{
"servers": {
"paybito": {
"type": "stdio",
"command": "npx",
"args": ["-y", "paybito-mcp"]
}
}
}
Note: VS Code uses "servers" (not "mcpServers") and requires "type": "stdio". This is different from other tools!
Open the Copilot Chat panel (Ctrl+Shift+I), switch to Agent mode (click the mode selector at the top), then type:
Use PayBito MCP. Initialize PayBito and ask me what I'm building.
Copilot Agent mode will detect the MCP server and use PayBito's tools to help you write integration code!
Windsurf (by Codeium) supports MCP servers. Add PayBito to get API-aware code generation.
If you already have Windsurf installed, skip to Step 2.
Node.js is needed to run the PayBito MCP package. If you already have it, skip to Step 3.
node --versionnode --versionsudo apt update && sudo apt install -y nodejs npmnode --versionOpen or create the Windsurf MCP config file:
# press Win+R and paste this notepad %USERPROFILE%\.codeium\windsurf\mcp_config.json
# open Terminal and run nano ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"paybito": {
"command": "npx",
"args": ["-y", "paybito-mcp"]
}
}
}
Save the file and restart Windsurf.
Open Windsurf's AI assistant (Cascade) and type:
Use PayBito MCP. Initialize PayBito and ask me what I'm building.
Windsurf will use the PayBito MCP tools to help you build your integration!
Claude Code is Anthropic's AI coding agent that runs in your terminal. It has first-class MCP support.
If you already have Claude Code installed, skip to Step 2.
irm https://claude.ai/install.ps1 | iex
npm install -g @anthropic-ai/claude-code
curl -fsSL https://claude.ai/install.sh | bash
npm install -g @anthropic-ai/claude-code
Note: Claude Code requires a paid Anthropic Console API key or team/enterprise subscription to run.
Node.js is needed to run the PayBito MCP package. If you already have it, skip to Step 3.
node --versionnode --versionsudo apt update && sudo apt install -y nodejs npmnode --versionClaude Code has a built-in command to add MCP servers. Open your terminal and run:
claude mcp add paybito -- npx -y paybito-mcp
That's it! This single command registers the PayBito MCP server. No config files to edit.
Start Claude Code and check that the MCP server is active:
# inside Claude Code, type: /mcp
You should see "paybito" listed as a connected MCP server.
Use PayBito MCP. Initialize PayBito and ask me what I'm building.
Claude Code will call the PayBito tools, load the API knowledge, and guide you through your integration!
Gemini CLI is Google's AI coding agent for the terminal. It supports MCP servers through a settings file.
If you already have Gemini CLI installed, skip to Step 2.
npm install -g @google/gemini-cli
Node.js is needed to run the PayBito MCP package. If you already have it, skip to Step 3.
node --versionnode --versionsudo apt update && sudo apt install -y nodejs npmnode --versionGemini CLI stores MCP config in a JSON settings file:
# press Win+R and paste this notepad %USERPROFILE%\.gemini\settings.json
# open Terminal and run nano ~/.gemini/settings.json
{
"mcpServers": {
"paybito": {
"command": "npx",
"args": ["-y", "paybito-mcp"]
}
}
}
Save the file. No restart needed — Gemini CLI reads it on next launch.
Open your terminal, run gemini, then type:
Use PayBito MCP. Initialize PayBito and ask me what I'm building.
Gemini CLI will connect to PayBito MCP and walk you through your integration!
OpenAI's Codex CLI is an AI coding agent for the terminal. It uses a TOML config file for MCP servers.
If you already have OpenAI Codex CLI installed, skip to Step 2.
npm install -g @openai/codex
Node.js is needed to run the PayBito MCP package. If you already have it, skip to Step 3.
node --versionnode --versionsudo apt update && sudo apt install -y nodejs npmnode --versionCodex CLI uses a TOML config file (different from the JSON used by other tools):
# press Win+R and paste this notepad %USERPROFILE%\.codex\config.toml
# open Terminal and run nano ~/.codex/config.toml
Add this to the file (TOML format — no curly braces!):
[mcp_servers.paybito] command = "npx" args = ["-y", "paybito-mcp"]
Save the file.
Open your terminal, run codex, then type:
Use PayBito MCP. Initialize PayBito and ask me what I'm building.
Codex CLI will load the PayBito MCP server and start guiding you through your integration!
Once connected, just say the magic words. The AI will greet you and guide you from there.
Type any of these into your AI app to activate PayBito MCP. The AI reads the PayBito knowledge and starts an interactive setup:
When you say the trigger phrase, the AI:
trade.yoursite.com)The assistant first learns what you're building, so a payments request never hits the trading API.
Spot, futures, options, market data, copy-trading.
Invoices, billing, KYC, recurring, settlements.
Products, catalogs, cart, payment links & buttons.
White-label exchange & apps across PayBito platforms.
The answer sets the module and the base URL — your own broker domain, or a PayBito host. The AI fills the endpoint; you keep the keys.