vanoe-intelligence-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| INTEL_API_KEY | No | Legacy API key (equivalent to VANOE_API_KEY) for compatibility. | |
| VANOE_API_KEY | No | Your Vanoe API key. | |
| INTEL_API_BASE_URL | No | Legacy base URL for the Vanoe API. Optional, defaults to https://api.vanoe.ai. | https://api.vanoe.ai |
| VANOE_API_BASE_URL | No | Base URL for the Vanoe API. Optional, defaults to https://api.vanoe.ai. | https://api.vanoe.ai |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_macroA | Macro regime (risk_on/neutral/risk_off), rates, inflation, yield curve, positioning. |
| get_stageA | Stage analysis (1=Basing, 2=Advancing, 3=Topping, 4=Declining) for up to 50 tickers. Pass tickers as a comma-separated string, e.g. 'AAPL,MSFT,NVDA'. |
| get_stage_historyA | Historical weekly trend-stage series for one ticker, walk-forward computed (no lookahead) — the only commercial source of trend stages as a backtest-safe data series. weeks defaults to 104, max 520. |
| get_pnfB | Point & Figure signal, breakout pattern, and relative strength vs SPY, for up to 50 tickers. Pass tickers as a comma-separated string. |
| get_sector_breadthA | Bullish-percent breadth by sector — the % of names in each sector on a Point & Figure buy signal. |
| get_verdictA | Composite verdict for one ticker: fuses trend stage, Point & Figure, insider-transaction clusters, and macro regime into a 0-100 score, an accumulate/hold/distribute/avoid enum, and a plain-English rationale. One call replaces separately calling stage, pnf, filings, and macro. |
| get_filingsB | Recent SEC insider transactions (Form 4) and 8-K filings for one ticker. |
| get_short_pressureA | Short pressure for up to 50 tickers: FINRA daily short-sale volume (share of volume sold short, latest, 10-day average, trend; market norm roughly 40-55%) plus the latest short-interest report (shares short, days to cover, change). Pass tickers as a comma-separated string. |
| get_calendarA | Upcoming macro events (FOMC, CPI, payrolls) within a look-ahead window in days (default 10, max 60). |
| get_usageA | Your current billing-period usage and remaining credit quota on your plan. Free — never counts against quota. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Most tools are distinct, but get_verdict clearly overlaps with get_stage, get_pnf, get_filings, and get_macro, as its description explicitly says it replaces calling them separately. An agent may still choose individual tools for customization, but the boundary is blurred.
All 10 tools follow a consistent get_<noun> pattern (get_macro, get_stage, get_short_pressure, etc.), making the naming predictable and easy to scan.
10 tools is well within the ideal 3-15 range for a financial intelligence server. The count feels slightly heavy due to the composite verdict tool, but no tool seems entirely redundant.
Covers macro, technicals, short data, filings, breadth, calendar, and account usage with good CRUD-like coverage for the domain. Minor gaps exist, such as no tool for historical filing retrieval or custom date ranges on most endpoints, but core workflows are supported.