# US Stocks & Market Data (remote · mcp-stocks-us.gino.im)

US market snapshot, stock fundamentals, prices, statements, news and analyst views

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

## Components

- remote · `mcp-stocks-us.gino.im`: 71/100 (this document), [markdown](https://verifymcp.io/servers/im-gino-stocks-us/mcp-stocks-us.md), [page](https://verifymcp.io/servers/im-gino-stocks-us/mcp-stocks-us)

## Channel facts

- Endpoint: `https://mcp-stocks-us.gino.im/mcp`
- Transports: `streamable-http`
- Auth: `none`
- 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-17.

- **Endpoint Security**: 80/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - 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**: 67/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1098 tokens (~183/item across 6 items; 6 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 71/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http im-gino-stocks-us https://mcp-stocks-us.gino.im/mcp
```

### Codex

```toml
[mcp_servers.im-gino-stocks-us]
url = "https://mcp-stocks-us.gino.im/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "im-gino-stocks-us": {
      "type": "remote",
      "url": "https://mcp-stocks-us.gino.im/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add im-gino-stocks-us --url https://mcp-stocks-us.gino.im/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  im-gino-stocks-us:
    url: "https://mcp-stocks-us.gino.im/mcp"
```

### Other

```json
{
  "mcpServers": {
    "im-gino-stocks-us": {
      "type": "http",
      "url": "https://mcp-stocks-us.gino.im/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-16 (score 71, +1)

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

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

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

### 2026-08-12 (score 69, +1)

- [security] Tool “get_finance_news” rewrote its description, which is the text the model reads
- [security] Tool “get_financial_statement” rewrote its description, which is the text the model reads
- [security] Tool “get_historical_stock_prices” rewrote its description, which is the text the model reads
- [security] Tool “get_market_overview” rewrote its description, which is the text the model reads
- [security] Tool “get_recommendations” rewrote its description, which is the text the model reads
- [security] Tool “get_stock_info” rewrote its description, which is the text the model reads

### 2026-08-11 (score 68, +17)

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

### 2026-08-10 (score 51)

First indexed and scored.

## MCP tools (6)

### `get_market_overview` (~134 tokens)

[US Stock Info] Get a snapshot of the overall US market: major indices (S&P 500, NASDAQ, Dow), the VIX volatility index, US Treasury yields, commodities (gold, WTI crude), and the USD/KRW rate.
    Use this for questions about the market as a whole rather than a single company, e.g. "how is the US market doing", "what happened overnight", "is the market up today".
    Takes no arguments. Also reports whether the US regular session is currently open, so a closed-market response can be described as the last trading day's close.

Output parameters:

- `result` (string)

### `get_historical_stock_prices` (~221 tokens)

[US Stock Info] Get historical stock prices for a given ticker symbol. Include the following information: Date, Open, High, Low, Close, Volume, Adj Close.
    Args:
        ticker: str
            The ticker symbol of the stock to get historical prices for, e.g. "AAPL"
        period : str
            Valid periods: 1d,5d,1mo,3mo,6mo,1y,2y,5y,10y,ytd,max
            Either Use period parameter or use start and end
            Default is "1mo"
        interval : str
            Valid intervals: 1m,2m,5m,15m,30m,60m,90m,1h,1d,5d,1wk,1mo,3mo
            Intraday data cannot extend last 60 days
            Default is "1d"

Input parameters:

- `interval` (string)
- `period` (string)
- `ticker` (string, required)

Output parameters:

- `result` (string)

### `get_stock_info` (~102 tokens)

[US Stock Info] Get a summary of key information for a given ticker symbol: price and trading range, market cap, valuation multiples, profitability and growth, dividend, analyst target and rating, beta, and a short business description.
    For detailed financial statements use get_financial_statement.

    Args:
        ticker: str
            The ticker symbol of the stock to get information for, e.g. "AAPL"

Input parameters:

- `ticker` (string, required)

Output parameters:

- `result` (string)

### `get_finance_news` (~59 tokens)

[US Stock Info] Get news for a given ticker symbol.
    
    Args:
        ticker: str
            The ticker symbol of the stock to get news for, e.g. "AAPL"

Input parameters:

- `ticker` (string, required)

Output parameters:

- `result` (string)

### `get_financial_statement` (~146 tokens)

[US Stock Info] Get financial statement for a given ticker symbol. You can choose from the following financial statement types: income_stmt, quarterly_income_stmt, balance_sheet, quarterly_balance_sheet, cashflow, quarterly_cashflow.
    
    Args:
        ticker: str
            The ticker symbol of the stock to get financial statement for, e.g. "AAPL"
        financial_type: str
            The type of financial statement to get. You can choose from the following financial statement types: income_stmt, quarterly_income_stmt, balance_sheet, quarterly_balance_sheet, cashflow, quarterly_cashflow.

Input parameters:

- `financial_type` (string, required)
- `ticker` (string, required)

Output parameters:

- `result` (string)

### `get_recommendations` (~161 tokens)

[US Stock Info] Get recommendations or upgrades/downgrades for a given ticker symbol. You can also specify the number of months back to get upgrades/downgrades for, default is 12.
    
    Args:
        ticker: str
            The ticker symbol of the stock to get recommendations for, e.g. "AAPL"
        recommendation_type: str
            The type of recommendation to get. You can choose from the following recommendation types: recommendations, upgrades_downgrades.
        months_back: int
            The number of months back to get upgrades/downgrades for, default is 12.

Input parameters:

- `months_back` (integer)
- `recommendation_type` (string, required)
- `ticker` (string, required)

Output parameters:

- `result` (string)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/im-gino-stocks-us/mcp-stocks-us#diagnostics

## Score history

- 2026-08-17: 71
- 2026-08-16: 71
- 2026-08-15: 70
- 2026-08-14: 69
- 2026-08-13: 69
- 2026-08-12: 69
- 2026-08-11: 68
- 2026-08-10: 51

## Links

- Remote endpoint: https://mcp-stocks-us.gino.im/mcp
- Website: https://mcp-stocks-us.gino.im/
- Changelog RSS feed: https://verifymcp.io/servers/im-gino-stocks-us/mcp-stocks-us.xml
- Changelog JSON feed: https://verifymcp.io/servers/im-gino-stocks-us/mcp-stocks-us.json
- HTML version of this page: https://verifymcp.io/servers/im-gino-stocks-us/mcp-stocks-us
