# Krosos (remote · app.krosos.com)

Your accounting ledger as typed tools: net worth, holdings, history, tax estimates, trade logging.

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

## Components

- remote · `app.krosos.com`: 70/100 (this document), [markdown](https://verifymcp.io/servers/com-krosos-krosos/api-mcp.md), [page](https://verifymcp.io/servers/com-krosos-krosos/api-mcp)

## Channel facts

- Endpoint: `https://app.krosos.com/api/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**: 89/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 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**: 57/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 550 tokens (~68/item across 8 items; 8 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 17/100
  - Stability observed for 5 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 72/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 17% of tool parameters carry a description.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-krosos-krosos https://app.krosos.com/api/mcp
```

### Codex

```toml
[mcp_servers.com-krosos-krosos]
url = "https://app.krosos.com/api/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-krosos-krosos": {
      "type": "remote",
      "url": "https://app.krosos.com/api/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-krosos-krosos --url https://app.krosos.com/api/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-krosos-krosos:
    url: "https://app.krosos.com/api/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-krosos-krosos": {
      "type": "http",
      "url": "https://app.krosos.com/api/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-03 (score 70, +1)

- [functional] Server version: f5107ff238b4a4ebda59712e79aa6ad5916b2b4a → ffc44e8a2602696766b2b1ae722901be2b24ad67

### 2026-08-02 (score 69, 0)

- [functional] Server version: 628a35ea2b8254d0f532beb0f0067b1ed4cd0952 → f5107ff238b4a4ebda59712e79aa6ad5916b2b4a
- [cosmetic] “log_trade” reworded the description of “overall_eur_value”

### 2026-08-01 (score 69, 0)

- [functional] Server version: 7d407217e3414b9ee6f9057518a7150fddba01e0 → 628a35ea2b8254d0f532beb0f0067b1ed4cd0952

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

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

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

- [functional improvement] Stability: unverified → 0.03
- [functional] Server version: e0b5dba70b27db51c2c29554d6e43dace17590e3 → 6e7eab1cee67c39fe67642c51abc852ab28ad002

### 2026-07-29 (score 63)

First indexed and scored.

## MCP tools (8)

### `get_dashboard` (~24 tokens)

Net worth, balance sheet and current holdings, in the ledger's base currency.

### `get_net_worth_history` (~23 tokens)

Historical net-worth snapshots (one point per day where recorded).

### `list_transactions` (~19 tokens)

Transaction history as a human-friendly list, newest first.

### `get_reference_data` (~41 tokens)

Valid accounts, providers, tickers, asset classes and categories. Read this before writing: trades and adjustments must use these values unless allow_new_values is set.

### `get_tax_report` (~65 tokens)

Capital-gains / income tax estimate for a year: gains, losses, exemption (including any carried-forward amount), taxable base and estimated tax.

Input parameters:

- `account` (string): One portfolio; absent sums every configured one
- `year` (string): Defaults to the current year

### `get_projection_config` (~37 tokens)

The forecast/FIRE plan's assumptions (salary, expenses, inflation, retirement dates, tax mode). The projection itself is computed client-side.

### `log_trade` (~241 tokens)

Log a trade (buy / sell / swap), expressed as from-asset to to-asset. Same body and validation as POST /api/transactions.

Input parameters:

- `allow_new_values` (boolean): Create accounts/providers/tickers not yet in reference-data. Default false.
- `description` (string)
- `from_account` (string, required)
- `from_amount` (number, required)
- `from_asset` (string, required)
- `from_category` (string)
- `from_description` (string)
- `from_provider` (string, required)
- `from_risk` (integer)
- `from_ticker` (string, required)
- `overall_eur_value` (number, required): The trade's total value in the ledger's base currency (the field name is historical: EUR was the only base)
- `to_account` (string, required)
- `to_amount` (number, required)
- `to_asset` (string, required)
- `to_category` (string)
- `to_description` (string)
- `to_provider` (string, required)
- `to_risk` (integer)
- `to_ticker` (string, required)
- `tx_date` (string, required)

### `record_balance_adjustment` (~100 tokens)

Record a signed quantity change on one holding (a balance update that is not a trade). Same body and validation as POST /api/position-adjustments.

Input parameters:

- `account` (string, required)
- `allow_new_values` (boolean)
- `asset` (string, required)
- `provider` (string, required)
- `quantity_delta` (number, required): Signed quantity change (non-zero)
- `ticker` (string, required)
- `tx_date` (string, required)

## Diagnostics

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

## Score history

- 2026-08-03: 70
- 2026-08-02: 69
- 2026-08-01: 69
- 2026-07-31: 69
- 2026-07-30: 64
- 2026-07-29: 63

## Links

- Remote endpoint: https://app.krosos.com/api/mcp
- Website: https://krosos.com/docs/api-access
- Changelog RSS feed: https://verifymcp.io/servers/com-krosos-krosos/api-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-krosos-krosos/api-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-krosos-krosos/api-mcp
