Skip to main content
The platform ships a built-in MCP server, so AI agents and assistants (Claude, Cursor, custom agents) can operate your organization directly — no integration code required.

Claude (web / desktop)

Use Add custom connector: paste the endpoint URL and leave the OAuth Client ID/Secret fields empty — the connector registers itself automatically. Claude opens a Hyperprop consent page where an org admin pastes the organization API key once; access then follows that key’s permissions and ends if the key is revoked. (Under the hood: OAuth 2.1 with PKCE and dynamic client registration.)

Cursor / Claude Code

Add to mcp.json:

Available tools

Readlist_trading_plans, list_trading_accounts, get_trading_account, get_account_audit_log, list_traders, get_trader, list_purchases, get_purchase, get_billing_summary Writecreate_trading_account, update_trading_account, record_payout Every tool call executes the corresponding REST endpoint with your key, so organization scoping, permissions, validation, audit logging, and webhooks apply exactly as documented on each endpoint.
Read tools work with any key; write tools need write/admin permission. Connect a read-only key if you want a strictly read-only agent.
create_trading_account accepts an optional idempotencyKey so agent retries can’t create duplicates, and record_payout implements the documented payout recipe (append to metadata.payouts, adjust currentBalance, audit-logged reason).