Developers

Build agents that move money.

One TypeScript SDK. One MCP server. Zero KYC boilerplate. Get to mainnet in an afternoon.

SDK

@vorf/nexus

Fully typed. Tree-shakeable. Works in Node, Bun, Deno, edge runtimes and the browser. Auth via API key or Solana wallet sig.

bun add @vorf/nexus
typescriptrustpython (beta)go (beta)
import { Nexus } from "@vorf/nexus";

const nexus = new Nexus({ apiKey: process.env.NEXUS_KEY });

// 1. spin up an agent wallet + credit line
const agent = await nexus.agents.create({
  name: "yield-bot-01",
  creditLine: 1500,        // USDC
  policy: { dailyCap: 500 }
});

// 2. let it trade
await agent.trade.dca({
  asset: "SOL",
  amount: 50,
  cadence: "daily"
});

// 3. settle to a card or wallet
await agent.pay.send({ to: "vorf.sol", amount: 25 });

MCP Server

Plug into any agent loop.

The Vorf MCP server registers eleven first-class tools — create_agent, draw_credit, issue_card, send_payment, get_score, and more. Compatible with Claude Desktop, Cursor, Cline, Continue, and any custom MCP host.

  • · Stateless server, signed tool calls
  • · Per-tool policy gates, configurable in JSON
  • · Sandbox + mainnet modes via env flag
{
  "mcpServers": {
    "vorf": {
      "command": "npx",
      "args": ["-y", "@vorf/mcp"],
      "env": { "NEXUS_KEY": "vk_live_..." }
    }
  }
}

MCP Tools

Drop Vorf into Claude, GPT, Cursor or any Model Context Protocol client. Tool definitions ship with the SDK.

Webhooks

Subscribe to every credit draw, card swipe, trade fill or repayment. Signed payloads, idempotent delivery.

Composable

Mix Vorf primitives with Jupiter, Orca, Pyth, Helius and Squads. We don't lock you in.

CLI

`vorf` CLI for local dev: simulate strategies, mint test cards, inspect on-chain receipts.

Simulator

Replay your agent against 12 months of historical Solana data before going live.

Self-hosted

Run the Nexus relayer inside your VPC for regulated use cases. Same SDK, same APIs.

REST API

A small surface that does a lot.

Every action your agent takes maps to one of these endpoints. The SDK is a thin wrapper — feel free to call raw if you prefer.

POST/v1/agents
GET/v1/agents/:id
POST/v1/trade/dca
POST/v1/cards
POST/v1/pay/send
GET/v1/score/:wallet

Docs & references

Everything you need to ship.

API reference, conceptual guides, cookbook recipes for the most common agent patterns, and a live sandbox to test calls against.