NexusTrade Financial MCP
NexusTrade TypeScript SDK
Author trading strategies in typed TypeScript. Backtest them on the engine that runs them live.
Quickstart · Authoring · Polling · Agents · Lake SQL · Auth · Errors
npm install nexustradeZero runtime dependencies. ESM and CommonJS builds ship together, with types.
MCP server
NexusTrade also exposes the platform as a hosted, remote Model Context Protocol server. Modern MCP clients connect directly to the production Streamable HTTP endpoint and discover NexusTrade OAuth automatically:
claude mcp add --transport http nexustrade https://nexustrade.io/api/mcpCursor and other remote-capable clients use:
{
"mcpServers": {
"nexustrade": {
"url": "https://nexustrade.io/api/mcp"
}
}
}For Claude Desktop and other stdio-only clients, use the established
mcp-remote bridge—no clone or local NexusTrade server is required:
{
"mcpServers": {
"nexustrade": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://nexustrade.io/api/mcp",
"--transport",
"http-only"
]
}
}
}The live server exposes more than 120 tools across market research, portfolio construction, backtesting, optimization, walk-forward validation, managed compute, Aurora agents, paper trading, and controlled brokerage operations. Its creator-marketplace tools cover the full strategy adoption path:
search_creatorsdiscovers public creators and their marketplace portfolios.subscribe_portfoliovalidates a monetized listing and returns a safe checkout preview; the user completes payment in NexusTrade, never through the MCP tool.fork_shared_portfoliocreates a one-time editable copy of a marketplace strategy in a new or existing portfolio.copy_trade_sharedcontinuously mirrors an accessible strategy into a paper or live portfolio at an explicit allocation.
See the developer guide, the utility tool reference, and the Aurora tool reference.
Research and historical results are not investment advice and do not guarantee future performance. Keep paper and live modes explicit. Tools that can affect portfolios, schedules, or brokerage orders remain subject to the authenticated account's NexusTrade permissions and approval controls.
Related MCP server: BotSpot
Quickstart
import {
NexusTradeClient,
always,
backtest,
buy,
portfolio,
stockAsset,
strategy,
} from "nexustrade";
const client = new NexusTradeClient({
apiKey: "sk-...",
baseUrl: "https://nexustrade.io/api/v1",
});
const book = portfolio("Example", [
strategy("Buy SPY", always(), buy(stockAsset("SPY"), 100)),
]);
const operation = await client.createBacktest(
backtest(book, { startDate: "2024-01-01", endDate: "2024-12-31" }),
{ idempotencyKey: "example-v1" }
);
const result = await client.waitForBacktest(operation.id as string);
console.log(result.result);Backtest operations may include warnings: string[] immediately after
submission and again in the terminal result. Treat them as material caveats;
they do not change a successful operation into a failure.
Authoring strategies
Every builder is generated from the same indicator specification the NexusTrade engine runs, so a book is valid by construction rather than by convention.
TypeScript cannot overload comparison operators, so indicators compose through
gt / gte / lt / lte / eq / neq and and / or:
import * as nt from "nexustrade";
const book = nt.portfolio(
"Momentum",
[
nt.strategy(
"Rotate into strength",
nt.always(),
nt.dynamicRebalance({
universe: nt.universe("SP500"),
pipeline: [
nt.filter(nt.gt(nt.Price(nt.CANDIDATE), nt.SMA(nt.CANDIDATE, 200))),
nt.selectTop(nt.RSI(nt.CANDIDATE, 14), 10),
],
weightIndicator: nt.RSI(nt.CANDIDATE, 14),
limit: 10,
deploymentPercent: 80,
})
),
],
{ initialValue: 100_000 }
);Group | Examples |
Price & volume |
|
Technicals |
|
Position state |
|
Portfolio state |
|
Fundamentals |
|
Options |
|
Actions |
|
Selection |
|
Logic |
|
Every builder is fully typed — your editor completes the whole surface.
Jobs run on the engine — you poll
create* enqueues work and returns immediately. It does not resolve when
results exist. There are no webhooks today.
sequenceDiagram
participant You
participant SDK
participant Engine
You->>SDK: createBacktest(book)
SDK->>Engine: POST (enqueue)
Engine-->>SDK: id, status=queued
SDK-->>You: operation (returns immediately)
loop waitForBacktest — backoff 2s→15s
SDK->>Engine: GET /operations/{id}
Engine-->>SDK: status update
end
SDK-->>You: result (when completed)
Note over You,Engine: Poll timeout throws operation_timeout.<br/>The job keeps running — call wait again with the same id.Every job kind reports the same envelope, so one poller serves all of them:
{
id: "op_...",
kind: "backtest", // backtest | optimization | walk_forward
status: "queued", // queued | running | completed | failed | cancelled
result: {...}, // present only once terminal
error: { code, message, retryable },
}const finished = await client.waitForBacktest(operation.id as string);Option | Default | Meaning |
|
| Give up waiting (the job keeps running) |
|
| First interval; backs off 1.5× |
|
| Interval ceiling |
|
| Throw on |
A timeout throws operation_timeout and does not cancel the job — call the
waiter again with the same id rather than resubmitting.
Batches. createBacktests submits many in one request and returns one
operation each; waitForBacktests(operations) waits on all of them. Prefer it
over a loop: one request, one idempotency key, one rate-limit slot.
Optimization and walk-forward follow the identical shape:
const study = await client.createWalkForward(
nt.walkForward(book, {
globalStartDate: "2022-01-01",
globalEndDate: "2024-12-31",
foldCount: 4,
}),
{ idempotencyKey: "wf-v1" }
);
await client.waitForWalkForward(study.id as string);Deploying a portfolio
Authoring and backtesting a book does not persist it. save writes it to your
account; deploy starts running it.
const book = nt.portfolio("Momentum", [
/* … */
]);
await book.save({ idempotencyKey: "momentum-v1" }); // persists; sets book.id
const deployment = await book.deploy(); // starts paper trading
await book.undeploy(); // stops itsave and deploy produce different ids, and the distinction matters.
save persists a draft and sets book.id to it. deploy mints the real
paper portfolio and returns its own portfolioId — deploying creates a
portfolio rather than converting the draft into one, so the two ids coexist.
Hold on to deployment.portfolioId for anything that reads live state;
book.id addresses the draft.
deployment.portfolioId; // the running portfolio
deployment.deploymentType; // paper, unless you deployed an existing live one
deployment.outcome; // created | reactivatedHandle methods accept an optional transport; omitted, they resolve one from
the environment. The same operations exist on the client — client.deploy(id),
client.undeploy(id) — when you have an id rather than a handle.
await client.listPortfolios({ includePaper: true, includePositions: true });
await client.getPortfolio(portfolioId);listPortfolios filters with includePaper, includeLive, includeInactive,
includeChatPortfolios, search, limit, and page. includePositions
defaults off when search is set.
A portfolio you create here is always paper, and minting a live one still happens in the web app. Orders and brokerage status are reachable from here; see Live trading.
But deploy can start live trading. Given the id of a portfolio that is
already deployed, it reactivates that portfolio as whatever it already is — so
client.deploy(id) on a paused live portfolio resumes live trading against the connected
brokerage, and includeLive: true above will hand you such an id. Check deployment.deploymentType before
treating a deploy as simulated.
Live trading
Live trading needs a brokerage linked to your account. Linking is an OAuth redirect, so an API key cannot complete it — a human opens the URL.
await client.listBrokerages();
// [{ brokerage: "Alpaca", connected: false,
// connectUrl: "https://nexustrade.io/live-trading" }, ...]
await client.connectBrokerage("Alpaca"); // logs the URL, waits until connectedconnectBrokerage waits by default only when stdout is a TTY. In CI, cron,
or run_compute it rejects with brokerage_not_connected immediately, with the
URL in the message, rather than stalling for five minutes in front of nobody.
Pass { wait: true } or { wait: false } to force either.
A live-only listing that comes back empty rejects with the same error rather than an empty array, since an empty array says nothing about why:
await client.listPortfolios({ includeLive: true, includePaper: false });
// NexusTradeApiError: brokerage_not_connected: No live portfolios, and no
// brokerage is connected. Connect one at https://nexustrade.io/live-tradingOrders
const result = await client.createOrders(
portfolioId,
[
{
asset: { name: "SPY", type: "STOCK", symbol: "SPY" },
side: "BUY",
quantity: 10,
orderType: "MARKET",
},
],
{ idempotencyKey: "rebalance-2024-04-01" }
);
// Dollar notional (stock/crypto only — options require contract quantity):
await client.createOrders(
portfolioId,
[
{
asset: { name: "AAPL", type: "STOCK", symbol: "AAPL" },
side: "BUY",
amount: 500,
orderType: "MARKET",
},
],
{ idempotencyKey: "buy-aapl-500" }
);Paper orders are accepted immediately. Live orders are staged for approval and are never sent to a broker by this call.
if (result.requiresApproval) {
console.log("nothing has traded yet — approve at", result.approvalUrl);
}There is no argument, scope, or flag that submits a live order without approval. The brokerage boundary refuses an unapproved live order regardless of what any caller asks for, so this is a property of the system rather than a promise made by this method. At most 50 orders per request.
Your own data
A custom data source is a time series you own — sentiment counts, a proprietary
factor, anything the platform does not already carry. Create one, then reference
it from a strategy with CustomIndicator.
const series = await client.createCustomIndicator(
{
name: "WSB NVDA Mentions",
scope: "asset",
description: "Daily r/wallstreetbets mentions",
pointKind: "observation",
points: [
{ timestamp: "2024-04-01", value: 152, ticker: "NVDA" },
{ timestamp: "2024-04-02", value: 90, ticker: "NVDA" },
],
},
{ idempotencyKey: "wsb-mentions-v1" }
);
const busy = nt.gt(
nt.CustomIndicator(nt.stockAsset("NVDA"), String(series.customIndicatorId)),
100
);
const book = nt.portfolio("Attention", [
nt.strategy("Buy the buzz", busy, nt.buy(nt.stockAsset("NVDA"), 25)),
]);scope is "global" (one series) or "asset" (one series per ticker, so every
point needs a ticker). It cannot be changed after creation.
Declare pointKind whenever the time semantics are known: observation for
point-in-time samples, period_aggregate plus aggregatePeriod (1d, 1w,
1mo, or 1q) for closed-period values, and disclosed for values with an
explicit publication time on every row. The SDK applies this contract before
both inline and large-upload writes. A same-day date-only observation becomes
an explicit same-day UTC instant instead of shifting to the next calendar day.
Size is not a constraint. points is unlimited. A batch that fits the
request goes with it; a larger one is uploaded to storage and validated before
the call resolves. Either way the returned indicator reflects what actually
landed, and an upload that fails validation rejects rather than reporting
success.
Growing a series. Append to the same id every run:
await client.appendCustomIndicatorPoints(
String(series.customIndicatorId),
[{ timestamp: "2024-04-03", value: 118, ticker: "NVDA" }],
{ idempotencyKey: "wsb-mentions-2024-04-03" }
);Creating a fresh series per run splits the history into fragments no strategy can read. Re-sending an identical batch is safe — the duplicate is not written twice.
Call | Purpose |
| Create, optionally seeded |
| Add points |
| Replace points, retain id |
| Reversible lifecycle |
| Discover ids and coverage |
Points accept timestamp, value, ticker, assetType, and availableAt
— camelCase or snake_case, with Date objects allowed. Set availableAt when a
value became knowable later than it is dated: an earnings figure stamped to
quarter-end but published weeks after. An unrecognized field throws rather than
being silently dropped.
To hand over a file you already have on disk, createCustomIndicatorUpload /
completeCustomIndicatorUpload / waitForCustomIndicatorUpload expose the
three steps directly. CSV, JSON, and JSONL up to 100 MB.
Agent runs
Every other job is fire-and-poll. Agents are not — three states
(pending_plan_approval, pending_action_approval, awaiting_user_input)
cannot advance without you. Iterate the run and answer when it blocks:
sequenceDiagram
participant You
participant Run as AgentRun
participant Engine
You->>Run: createAgent(prompt)
Run->>Engine: POST /agents
Engine-->>Run: run id
loop for await (const event of run)
Run->>Engine: GET events (cursor)
Engine-->>Run: new events
alt event.needsApproval
Run-->>You: plan or action awaiting approval
You->>Run: approve() or reject()
Run->>Engine: POST approval
else event.needsInput
Run-->>You: awaiting user input
You->>Run: say("...")
Run->>Engine: POST message
else
Run-->>You: event.text
end
end
Run-->>You: terminal
Note over You,Engine: Without approve/say, the run stalls and bills.<br/>Reattach later with attachAgent(run.id).const run = await client.createAgent("Find momentum names in the S&P 500", {
idempotencyKey: "momentum-scan-v1",
});
for await (const event of run) {
console.log(event.text);
if (event.needsApproval) await run.approve();
if (event.needsInput) await run.say("Focus on tech");
}Lake SQL
Read-only SQL over the NexusTrade market-data lake, against the server-resolved
lake.* catalog. Results are durable Parquet parts rather than an implicitly
materialized in-memory array.
flowchart LR
A[createLakeQuery] --> B[waitForLakeQuery]
B --> C[getLakeQueryManifest]
C --> D[downloadLakeQueryPart]
D --> E[Stream Parquet within your memory budget]const query = await client.createLakeQuery(
{
query:
"SELECT ticker, date, closingPrice FROM lake.daily_ohlc WHERE ticker = ?",
params: ["AAPL"],
limits: { maxRows: 10_000 },
},
{ idempotencyKey: "aapl-daily-v1" }
);
const finished = await client.waitForLakeQuery(query.id as string);
const manifest = await client.getLakeQueryManifest(finished.id as string);Natural language
Describe the screen instead of writing the SQL. The server generates it,
validates it against the same lake.* catalog the engine reads, executes it,
and hands back both the rows and the statement.
const screen = await client.createNlScreen(
"technology stocks with a market cap over 100 billion and a PE under 30"
);
const done = await client.waitForNlScreen(screen.id as string);
const result = done.result as Record<string, unknown>;
console.log(result.rows);
console.log(result.sql); // always check the SQL — it is model-generatedreturnQuery defaults to true because the SQL is the audit trail: without it
the rows are a number you cannot re-derive. It is returned on failure whatever
you pass, since a rejected query is the most useful thing to read.
Branch on result.outcome, not on status alone:
| Meaning |
| Matches found |
| Every filter ran and nothing cleared them all — an answer |
| The question was ambiguous; |
| The retry budget was spent — the only case worth retrying |
This method spends LLM credits. The structured lake API below does not.
Use the manifest plus downloadLakeQueryPart to stream results within your own
memory budget. NexusTrade picks a compatible backing engine for the referenced
tables; your SQL does not change when it does.
The Python SDK additionally ships
nt.lake.sql(...), a DuckDB/pandas convenience layer over these same endpoints.
Complete method reference
Every public method on NexusTradeClient. A test in this package fails if one
is missing here, so this list cannot drift from the code.
Live trading and orders
Method | Purpose |
| Every connectable brokerage and whether it is linked |
| Whether one brokerage is linked |
| Log the connect URL and wait for the link |
| Stage orders; live ones need approval |
Portfolios
Method | Purpose |
| Persist a portfolio definition |
| List portfolios, with filters and pagination |
| Read one portfolio |
| Start paper trading it |
| Stop it |
Backtests
Method | Purpose |
| Submit one backtest |
| Submit many in one request |
| Read the operation |
| Block until terminal |
| Block on a whole batch |
Optimization and walk-forward
Method | Purpose |
| Submit an optimization |
| Read the operation |
| Block until terminal |
| Submit a walk-forward study |
| Read the operation |
| Block until terminal |
Custom data sources
Method | Purpose |
| Create a series, optionally seeded |
| List owned series |
| Read one, with its point count and range |
| Add points |
| Replace the complete series while retaining its id |
| Soft-archive a series |
| Restore an archived series |
| Open an upload slot (CSV/JSON/JSONL) |
| Start validating uploaded bytes |
| Read the upload operation |
| Block until validated |
Agent runs
Method | Purpose |
| Start a run |
| Read its status |
| Reattach to a run already in flight |
Lake SQL
Method | Purpose |
| Submit read-only SQL |
| Read the operation |
| Block until terminal |
| Cancel an owned query |
| Ask the lake in plain language |
| Read the operation |
| Block until terminal |
| Cancel an owned ask |
| Schema, checksums, and part metadata |
| Download one Parquet part |
| List queryable tables |
| Columns and types for one table |
Natural language
Method | Purpose |
| Screen stocks from a plain-language question |
| Read the operation |
| Block until terminal |
| Cancel an owned screen |
Client construction
Method | Purpose |
| Explicit credentials |
| Read them from the environment or |
PortfolioHandle — returned by the portfolio(...) builder and by
getPortfolio / listPortfolios.
Method | Purpose |
| Persist it as a draft, setting |
| Backtest it, preferring the saved id |
| Mint the real paper portfolio (new id) |
| Deactivate its deployment |
Authentication
Create a key at nexustrade.io/developers
(Profile → API Keys). Keys start with sk- and are shown once.
const client = new NexusTradeClient({
apiKey: "sk-...",
baseUrl: "https://nexustrade.io/api/v1",
});
// or set NEXUSTRADE_API_KEY / NEXUSTRADE_API_BASE_URL and:
const fromEnv = new NexusTradeClient();Both variables are also read from a .env file at or above the current
directory, so a local project works with no exports, no dotenv dependency, and
no --env-file flag:
# .env
NEXUSTRADE_API_KEY=sk-...
NEXUSTRADE_API_BASE_URL=https://nexustrade.io/api/v1The real environment always wins — a .env value is used only when the variable
is absent, so a stale file can never override what you exported. Nothing is
written back to process.env. Opt out with NEXUSTRADE_DISABLE_DOTENV=1.
Scope | Grants |
|
|
|
|
| Lake catalog, query lifecycle, manifests, result parts |
A key missing the scope gets 403 insufficient_scope.
OAuth is not accepted here. NexusTrade's OAuth flow serves the MCP server. These endpoints take
sk-API keys only; a bearer JWT is rejected with401 invalid_token.
Transport hardening. HTTPS is required (except loopback). The client refuses
cross-origin redirects, so the credential cannot be replayed to another host, and
refuses to follow a redirect on any non-GET request, so a redirect can never
re-submit a paid job. The key is held in a #private field and never appears in
a stringified client.
Idempotency
Every mutation takes a key. Reusing the same key with the same request returns the original resource instead of launching a second paid job — so a retry after a network failure is free.
await client.createBacktest(handle, { idempotencyKey: "momentum-2024-v1" });Errors
import { NexusTradeApiError } from "nexustrade";
try {
await client.createBacktest(handle, { idempotencyKey: "run-1" });
} catch (error) {
if (
error instanceof NexusTradeApiError &&
error.code === "rate_limit_exceeded"
) {
// back off
}
throw error;
}Status | Code | Meaning |
401 |
| Missing, malformed, or expired key (or an OAuth JWT) |
403 |
| Key lacks |
400 |
| Malformed input |
400 |
| Must match |
409 |
| Key reused with a different payload |
409 |
| Same key, first call still running. Re-poll, do not resubmit |
404 |
| Unknown or not yours |
429 |
| Back off and retry |
status is 0 when no HTTP status describes the failure: transport_error
(never reached the API), unsafe_redirect, or an invalid_response envelope
check on an otherwise-successful reply.
Timeouts
new HttpTransport({ timeoutSeconds }) (default 30) is a total wall-clock
deadline for one request. Neither it nor the poll timeout bounds how long a
job takes.
Scope
Portfolio drafting, backtesting, optimization, walk-forward studies, and
read-only SQL over the market-data lake, versioned under /api/v1/nexustrade.
The screener and creating a live deployment remain outside this surface.
Orders are reachable, but a live order is only ever staged for human approval —
never submitted. deploy and undeploy act on whatever an existing id already
is, live included.
Requirements
Node 18+ (uses the global fetch). Contributing: the test suite runs TypeScript
directly via node --test, which needs Node 22.6+ for type stripping. The
published dist/ is plain JavaScript and has no such requirement.
Using this SDK with a coding agent
See AGENTS.md — the conventions, invariants, and recipes an agent needs to write correct NexusTrade strategies on the first pass.
License
MIT
This server cannot be installed
Maintenance
Related MCP Servers
- AlicenseAqualityCmaintenanceThe conviction engine for autonomous crypto trading agents. 376 metrics across 8 factor classes, multi-factor backtesting, signal persistence, and regime analysis — 21 tools for AI agents via MCP.2190MIT
- Flicense-qualityDmaintenanceFull-lifecycle algorithmic trading MCP server. AI strategy generation from plain English, backtesting, live bot deployment to 10+ brokers, portfolio monitoring, and prediction markets. Stocks, options, crypto, futures. 32 tools. Free tier.
- Flicense-qualityCmaintenanceEnables quant research, strategy generation, backtesting, and paper trading from natural language prompts, integrating with AI agents via an MCP server.61
- Alicense-qualityCmaintenanceEnables quantitative trading research by providing tools to backtest strategies, list market datasets, review forward-test logs, and search previously rejected hypotheses, all through an MCP interface.MIT
Related MCP Connectors
Hosted MCP for stocks, options, Greeks, brokers, order previews, alerts, and workflows.
Crypto MCP with 21 tools for market data, DeFi, analytics, and sentiment. Post-paid USDC billing.
One MCP key: prices, fundamentals, SEC filings, insider/13F/congressional trades. 336 tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/austin-starks/nexustrade-ts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server