01 / QUICKSTART
Connect a client
Nexus uses MCP Streamable HTTP. Add server URL and bearer header to any compliant client.
Standard JSON configuration
{
"mcpServers": {
"nexus": {
"type": "http",
"url": "https://mcp.omnific.dev/mcp",
"headers": {
"Authorization": "Bearer ${NEXUS_MCP_TOKEN}"
}
}
}
}Claude Code
claude mcp add --transport http nexus https://mcp.omnific.dev/mcp \ --header "Authorization: Bearer $NEXUS_MCP_TOKEN"
Codex
codex mcp add nexus \ --url https://mcp.omnific.dev/mcp \ --bearer-token-env-var NEXUS_MCP_TOKEN
02 / AUTHENTICATION
Bearer token
Every MCP request requires HTTP Authorization. Server route stays unmounted when deployment has no configured MCP bearer token.
Bearer $NEXUS_MCP_TOKENrequired03 / RECOMMENDED FLOW
Start broad. Drill down.
get_regimeComputed regime and weighted contributions.
get_insightsLiquidity, credit, curve, rates, or stress.
get_quotesCurrent levels and daily moves.
get_signal_eventsThreshold crossings and before/after state.
04 / TOOL REFERENCE
16 typed tools
get_regimeREADOverall computed liquidity/credit regime verdict. Best first call for macro-backdrop questions.
get_regimeREADtrueNo arguments.
get_insightsREADComputed liquidity, credit, curve, rates, stress, or alert detail.
get_insightsREADtruekindstringrequirednet_liquidity | credit | curve | rates | credit_stress | alerts
include_seriesbooleanoptionalInclude 90-day net-liquidity series; default false.
get_insight_historyREADDaily insight snapshots across a date range, capped at 92 days.
get_insight_historyREADtruefromstringoptionalStart date YYYY-MM-DD.
tostringoptionalEnd date YYYY-MM-DD.
get_signal_eventsREADDiscrete regime, credit, curve, and alert threshold events.
get_signal_eventsREADtrueevent_typestringoptionalOptional event type.
limitintegeroptionalDefault 10, maximum 50.
get_correlationREADRolling cross-asset correlation matrices.
get_correlationREADtruewindowsinteger[]optionalTrading-day windows such as [30, 90].
get_cross_signalsREADPrediction venue, CFTC, expiry, momentum, and liquidity anomalies.
get_cross_signalsREADtruesignal_typestringoptionalOptional signal-list filter.
limitintegeroptionalItems per list; default 10, maximum 50.
get_cftcREADLatest CFTC positioning, normalized flows, z-scores, and squeeze signals.
get_cftcREADtruesymbolstringoptionalContract symbol such as ES, GC, or 6E.
limitintegeroptionalDefault 10, maximum 50.
get_sentimentREADCrypto, stock, and gold Fear & Greed readings.
get_sentimentREADtruedaysintegeroptionalHistory per index; default 7, maximum 50.
get_quotesREADCurrent price, daily change, market status, and freshness.
get_quotesREADtruesymbolsstring[]requiredUp to 20 symbols.
get_market_historyREADDaily history for tracked major assets.
get_market_historyREADtruesymbolsstring[]optionalOptional tracked-symbol filter.
days_backintegeroptionalDefault 30, maximum 365.
get_economic_calendarREADMacro events with actual, forecast, prior, importance, and time.
get_economic_calendarREADtruecountrystringoptionalISO country code.
limitintegeroptionalDefault 10, maximum 50.
get_market_stateREADLatest narrative market HUD, asset diagnostics, and lookahead radar.
get_market_stateREADtrueNo arguments.
get_daily_reportREADDaily research report, key news, and trading notes.
get_daily_reportREADtruedatestringoptionalDate YYYY-MM-DD; latest when omitted.
summary_onlybooleanoptionalOmit full report text.
search_reportsREADFull-text report archive search with compact snippets.
search_reportsREADtruequerystringrequiredSearch needle.
report_typestringoptionalOptional report type.
fromstringoptionalStart date.
tostringoptionalEnd date.
pageintegeroptional1-based page.
page_sizeintegeroptionalDefault 10, maximum 50.
search_newsREADCurated headline and OSINT search before general web search.
search_newsREADtruequerystringoptionalOptional text or symbol needle.
typestringoptionalnormal | breaking | osint
fromstringoptionalStart date or RFC3339.
tostringoptionalEnd date or RFC3339.
pageintegeroptional1-based page.
page_sizeintegeroptionalDefault 10, maximum 50.
get_market_wrapREADAsia, Europe, or US session recap.
get_market_wrapREADtruedatestringoptionalDate YYYY-MM-DD; latest when omitted.
sessionstringoptionalasia | europe | us
05 / ERRORS & LIMITS
Predictable failure modes
Tool failures return MCP tool errors with a short recovery hint. Retry errors marked retryable; correct invalid symbols, dates, filters, or required inputs before retrying validation errors.
