# IncomeBot Trading Intelligence (remote · ib.phos.nz)

Options trading — regime detection, momentum scanning, income screening, and risk simulation.

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

## Components

- remote · `ib.phos.nz`: 61/100 (this document), [markdown](https://verifymcp.io/servers/albermm-incomebot/ib.md), [page](https://verifymcp.io/servers/albermm-incomebot/ib)

## Channel facts

- Endpoint: `https://ib.phos.nz/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-03.

- **Endpoint Security**: 46/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 10 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - 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**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 974 tokens (~97/item across 10 items; 10 tools + 0 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.
  - 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 albermm-incomebot https://ib.phos.nz/mcp/
```

### Codex

```toml
[mcp_servers.albermm-incomebot]
url = "https://ib.phos.nz/mcp/"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "albermm-incomebot": {
      "type": "remote",
      "url": "https://ib.phos.nz/mcp/",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add albermm-incomebot --url https://ib.phos.nz/mcp/ --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  albermm-incomebot:
    url: "https://ib.phos.nz/mcp/"
```

### Other

```json
{
  "mcpServers": {
    "albermm-incomebot": {
      "type": "http",
      "url": "https://ib.phos.nz/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 61, +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 60, −2)

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

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

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

### 2026-07-29 (score 61, +1)

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

### 2026-07-27 (score 60, +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 59)

First indexed and scored.

## MCP tools (10)

### `get_market_snapshot` (~39 tokens)

Get broad market snapshot — SPY, QQQ, VIX with technical indicators.

Input parameters:

- `api_key` (string): Your API key for authentication

### `get_ticker_snapshot` (~60 tokens)

Get a single ticker snapshot with price, SMAs, volume, and ADR.

Input parameters:

- `api_key` (string): Your API key for authentication
- `ticker` (string, required): Stock ticker symbol (e.g. "AAPL", "MSFT")

### `screen_momentum_universe` (~104 tokens)

Screen stocks against momentum universe filter — ADR, volume, price range.

Input parameters:

- `api_key` (string): Your API key for authentication
- `max_price` (number): Maximum price (default $500)
- `min_adr_pct` (number): Minimum average daily range % (default 1.5)
- `min_avg_volume` (integer): Minimum average volume (default 1M)
- `min_price` (number): Minimum price (default $10)

### `find_options_by_delta` (~160 tokens)

Find options contracts by delta range and days to expiration.

Useful for income sleeve put selling — find 20-25 delta puts with 25-40 DTE.

Input parameters:

- `api_key` (string): Your API key for authentication
- `max_delta` (number): Maximum absolute delta (default 0.25)
- `max_dte` (integer): Maximum days to expiration (default 40)
- `min_delta` (number): Minimum absolute delta (default 0.20)
- `min_dte` (integer): Minimum days to expiration (default 25)
- `option_type` (string): "put" or "call" (default "put")
- `symbol` (string, required): Underlying ticker (e.g. "SPY")

### `validate_trade_risk` (~164 tokens)

Validate a proposed trade against 7-layer risk guardrails.

Checks: hard limits, circuit breakers, velocity, confidence gates,
position sizing, portfolio heat, and drawdown triggers.

Input parameters:

- `api_key` (string): Your API key for authentication
- `instrument_type` (string): "equity" or "option" (default "equity")
- `price_cents` (integer, required): Entry price in cents (e.g. 15000 = $150.00)
- `quantity` (integer, required): Number of shares
- `side` (string, required): "buy" or "sell"
- `stop_loss_cents` (integer): Stop loss price in cents (0 = no stop)
- `ticker` (string, required): Stock ticker (e.g. "AAPL")

### `calculate_position_size` (~104 tokens)

Calculate risk-based position size using fixed fractional method.

Input parameters:

- `api_key` (string): Your API key for authentication
- `entry_price_cents` (integer, required): Entry price in cents
- `portfolio_value_cents` (integer): Portfolio value in cents (0 = use brain's portfolio)
- `risk_pct` (number): Risk per trade as decimal (default 0.01 = 1%)
- `stop_price_cents` (integer, required): Stop loss price in cents

### `get_portfolio_heat` (~54 tokens)

Get current portfolio heat — total risk across all positions.

Shows per-position heat, momentum vs income sleeve breakdown,
and remaining heat capacity (6% max).

Input parameters:

- `api_key` (string): Your API key for authentication

### `run_momentum_scan` (~77 tokens)

Full momentum universe scan — screen + pattern detection + ranking.

Scans the entire watchlist for bull flags, breakouts, and pullback setups.
May take 10-30 seconds.

Input parameters:

- `api_key` (string): Your API key for authentication
- `max_results` (integer): Maximum setups to return (default 10)

### `run_income_scan` (~69 tokens)

Full income sleeve scan — find cash-secured put opportunities.

Checks regime gate, scans for 20-25 delta puts with 25-40 DTE
on SPY/QQQ. May take 10-30 seconds.

Input parameters:

- `api_key` (string): Your API key for authentication

### `run_monte_carlo` (~86 tokens)

Monte Carlo portfolio risk simulation.

Runs N simulations to estimate VaR, CVaR, max drawdown, and expected return.

Input parameters:

- `api_key` (string): Your API key for authentication
- `horizon_days` (integer): Time horizon in days (default 30)
- `simulations` (integer): Number of simulations (default 1000, max 10000)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/albermm-incomebot/ib#diagnostics

## Score history

- 2026-08-03: 61
- 2026-08-02: 61
- 2026-08-01: 60
- 2026-07-31: 60
- 2026-07-30: 62
- 2026-07-29: 61
- 2026-07-28: 60
- 2026-07-27: 60
- 2026-07-26: 59

## Links

- Remote endpoint: https://ib.phos.nz/mcp/
- Changelog RSS feed: https://verifymcp.io/servers/albermm-incomebot/ib/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/albermm-incomebot/ib/changelog.json
- HTML version of this page: https://verifymcp.io/servers/albermm-incomebot/ib
