# com.thenextgennexus/finance-mcp-server (remote · nexgendata-mcp-proxy.steve-corbeil.workers.dev)

Stocks, crypto, FX, and portfolio math in one tool — no per-source API juggling.

- Trust score: 70/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `nexgendata-mcp-proxy.steve-corbeil.workers.dev`: 70/100 (this document), [markdown](https://verifymcp.io/servers/com-thenextgennexus-finance-mcp-server/finance-mcp-server-mcp.md), [page](https://verifymcp.io/servers/com-thenextgennexus-finance-mcp-server/finance-mcp-server-mcp)

## Channel facts

- Endpoint: `https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/finance-mcp-server/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 71/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, but the challenge carries no valid RFC 9728 metadata, so a client cannot discover where to get a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 452 tokens (~75/item across 6 items; 5 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-thenextgennexus-finance-mcp-server https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/finance-mcp-server/mcp
```

### Codex

```toml
[mcp_servers.com-thenextgennexus-finance-mcp-server]
url = "https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/finance-mcp-server/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-thenextgennexus-finance-mcp-server": {
      "type": "remote",
      "url": "https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/finance-mcp-server/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-thenextgennexus-finance-mcp-server --url https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/finance-mcp-server/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-thenextgennexus-finance-mcp-server:
    url: "https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/finance-mcp-server/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-thenextgennexus-finance-mcp-server": {
      "type": "http",
      "url": "https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/finance-mcp-server/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 70, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 69, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 68, +1)

No change was recorded against any check on this day. Stability & Change Management went from 10 to 13. That category is still filling its 30-day observation window: 3 days of observed history at the previous scan, 4 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 67, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 66, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 65)

First indexed and scored.

## MCP tools (5)

### `get_stock_data` (~109 tokens)

Retrieve comprehensive stock market data for individual ticker symbols from Yahoo Finance. Returns current price, intraday high/low, 52-week range, trading volume, market capitalization, P/E ratio, earnings per share, dividend yield, and sector classification. Use for fundamental analysis, stock screening, or building financial dashboards.

Input parameters:

- `ticker` (string, required): Stock ticker symbol in uppercase format (e.g. 'AAPL' for Apple, 'MSFT' for Microsoft, 'GOOGL' for Alphabet)

### `screen_stocks` (~101 tokens)

Filter and screen stocks based on financial criteria like market cap range, sector, P/E ratio thresholds, dividend yield, or revenue growth. Returns matching ticker symbols with key metrics. Use for value investing, growth stock identification, or portfolio rebalancing analysis.

Input parameters:

- `criteria` (object): Filtering criteria as key-value pairs (e.g. {'sector': 'technology', 'market_cap_min': 1000000000, 'pe_ratio_max': 25})

### `get_crypto_prices` (~75 tokens)

Fetch real-time cryptocurrency prices and 24-hour market data for multiple coins. Returns current price in USD, 24h price change percentage, market cap, and trading volume. Use for crypto portfolio tracking, price alerts, or comparing digital assets.

Input parameters:

- `coins` (array): List of cryptocurrency symbols or names to fetch price data

### `get_exchange_rates` (~76 tokens)

Look up current foreign exchange rates between major world currencies. Returns exchange rate, bid/ask spread, and last update timestamp. Use for travel planning, international business transactions, or forex trading decisions.

Input parameters:

- `base` (string): Base currency code for rate calculation (e.g. 'USD', 'EUR', 'GBP', 'JPY')

### `track_crypto_portfolio` (~70 tokens)

Monitor real-time prices and performance metrics for a portfolio of cryptocurrency holdings. Returns current price per coin, 24-hour percentage change, portfolio value summary, and top movers. Use for active portfolio management and price monitoring.

Input parameters:

- `coins` (array, required): List of cryptocurrency codes in portfolio to track real-time

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-thenextgennexus-finance-mcp-server/finance-mcp-server-mcp#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 70
- 2026-08-01: 69
- 2026-07-31: 69
- 2026-07-30: 68
- 2026-07-29: 67
- 2026-07-28: 67
- 2026-07-27: 66
- 2026-07-26: 65

## Links

- Remote endpoint: https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/finance-mcp-server/mcp
- Authorisation metadata: https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/.well-known/oauth-protected-resource/finance-mcp-server/mcp
- Website: https://apify.com/nexgendata/finance-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/com-thenextgennexus-finance-mcp-server/finance-mcp-server-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-thenextgennexus-finance-mcp-server/finance-mcp-server-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-thenextgennexus-finance-mcp-server/finance-mcp-server-mcp
