# io.github.AIWerk/mcp-server-wise (npm · @aiwerk/mcp-server-wise)

Wise Personal API: profiles, balances, multi-currency rates, transfers, recipients (read-only).

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

## Components

- npm · `@aiwerk/mcp-server-wise`: 69/100 (this document), [markdown](https://verifymcp.io/servers/aiwerk-mcp-server-wise/aiwerk-mcp-server-wise.md), [page](https://verifymcp.io/servers/aiwerk-mcp-server-wise/aiwerk-mcp-server-wise)

## Channel facts

- Registry: `npm`
- Package: `@aiwerk/mcp-server-wise`
- Version: `0.1.7`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, 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-04.

- **Supply Chain Security**: 83/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known medium-severity CVE affects hono 4.12.33, reached via @modelcontextprotocol/sdk > hono. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 41 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 862 tokens (~78/item across 11 items; 11 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 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**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add aiwerk-mcp-server-wise -- npx -y @aiwerk/mcp-server-wise
```

### Codex

```bash
codex mcp add aiwerk-mcp-server-wise -- npx -y @aiwerk/mcp-server-wise
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "aiwerk-mcp-server-wise": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@aiwerk/mcp-server-wise"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add aiwerk-mcp-server-wise --command npx --arg -y --arg @aiwerk/mcp-server-wise
```

### Hermes

```yaml
mcp_servers:
  aiwerk-mcp-server-wise:
    command: "npx"
    args: ["-y", "@aiwerk/mcp-server-wise"]
```

### Other

```json
{
  "mcpServers": {
    "aiwerk-mcp-server-wise": {
      "command": "npx",
      "args": [
        "-y",
        "@aiwerk/mcp-server-wise"
      ]
    }
  }
}
```

## 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-04 (score 69, −1)

- [security regression] CVE-2026-69207 affects this package: medium
- [security regression] Known CVEs: partial → fail

### 2026-08-03 (score 70, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 66, +30)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 36, +30)

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

### 2026-07-31 (score 6, −40)

- [security regression] Malware scan: pass → unverified
- [functional regression] Tool coverage: 100 → unverified

### 2026-07-28 (score 46, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: pass

### 2026-07-27 (score 24)

First indexed and scored.

## MCP tools (11)

### `wise_list_profiles` (~36 tokens)

List all profiles (PERSONAL and BUSINESS) accessible with the token. ALWAYS call this first — most other tools need a profileId.

### `wise_get_profile` (~39 tokens)

Get a profile by ID (name, type, address, KYC status).

Input parameters:

- `profileId` (integer, required): Profile ID (from list_profiles)

### `wise_list_balances` (~92 tokens)

List balance accounts for a profile. STANDARD = one per currency (the multi-currency account). SAVINGS = jars (user-named buckets). Default returns only STANDARD.

Input parameters:

- `profileId` (integer, required): Profile ID (from list_profiles)
- `types` (string): Comma-separated balance types. Known values: STANDARD (one per currency), SAVINGS (jars, multiple per currency). Default STANDARD.

### `wise_get_balance` (~50 tokens)

Get a specific balance by ID (available amount, reserved amount, last updated).

Input parameters:

- `balanceId` (integer, required): Balance ID (from list_balances)
- `profileId` (integer, required): Profile ID

### `wise_get_exchange_rate` (~60 tokens)

Get the current mid-market exchange rate between two currencies.

Input parameters:

- `source` (string, required): Source currency code, ISO-4217 (e.g. EUR, USD, GBP)
- `target` (string, required): Target currency code, ISO-4217

### `wise_get_exchange_rate_history` (~112 tokens)

Get historical mid-market exchange rates between two currencies. group: day/hour/minute granularity.

Input parameters:

- `from` (string, required): Start datetime (ISO-8601, e.g. 2026-04-01T00:00:00+0000)
- `group` (string): Aggregation granularity. Default day.
- `source` (string, required): Source currency code
- `target` (string, required): Target currency code
- `to` (string, required): End datetime (ISO-8601)

### `wise_list_transfers` (~229 tokens)

List transfers for a profile with optional filters. Use status to narrow: incoming_payment_waiting, processing, funds_converted, outgoing_payment_sent, bounced_back, cancelled, funds_refunded.

Input parameters:

- `createdDateEnd` (string): ISO-8601 end timestamp
- `createdDateStart` (string): ISO-8601 start timestamp, e.g. 2026-01-01T00:00:00.000Z
- `limit` (integer): Results per page (default 10, max 100)
- `offset` (integer): Pagination offset
- `profileId` (integer, required): Profile ID
- `sourceCurrency` (string): Filter by source currency (ISO-4217)
- `status`: Filter by status. Known values: incoming_payment_waiting, incoming_payment_initiated, processing, funds_converted, outgoing_payment_sent, bounced_back, cancelled, funds_refunded, waiting_recipient_in…
- `targetCurrency` (string): Filter by target currency

### `wise_get_transfer` (~41 tokens)

Get a specific transfer by ID (status, amounts, recipient, quote, timestamps).

Input parameters:

- `transferId` (integer, required): Transfer ID (from list_transfers)

### `wise_list_recipients` (~62 tokens)

List recipient accounts for a profile. Filter by currency if you only want e.g. EUR beneficiaries.

Input parameters:

- `currency` (string): Optional ISO-4217 filter. Without it, all currencies are returned.
- `profileId` (integer, required): Profile ID

### `wise_get_recipient` (~42 tokens)

Get a recipient account by ID (bank details, account holder, currency).

Input parameters:

- `accountId` (integer, required): Recipient account ID (from list_recipients)

### `wise_get_account_requirements` (~99 tokens)

Get the required bank-account fields for creating a recipient in a given source→target currency + amount. Fields differ by country: USD routing number, EUR IBAN, GBP sort code, etc.

Input parameters:

- `source` (string, required): Source currency code (ISO-4217)
- `sourceAmount` (number, required): Source amount (influences which requirement fields are needed)
- `target` (string, required): Target currency code (ISO-4217)

## Diagnostics

Captured diagnostic sections: Provenance, Vulnerabilities, Dependencies. The full working is on the page: https://verifymcp.io/servers/aiwerk-mcp-server-wise/aiwerk-mcp-server-wise#diagnostics

## Score history

- 2026-08-04: 69
- 2026-08-03: 70
- 2026-08-02: 66
- 2026-08-01: 36
- 2026-07-31: 6
- 2026-07-29: 46
- 2026-07-28: 46
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/@aiwerk/mcp-server-wise
- Socket report: https://socket.dev/npm/package/@aiwerk/mcp-server-wise
- Repository: https://github.com/AIWerk/mcp-server-wise
- Changelog RSS feed: https://verifymcp.io/servers/aiwerk-mcp-server-wise/aiwerk-mcp-server-wise/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/aiwerk-mcp-server-wise/aiwerk-mcp-server-wise/changelog.json
- HTML version of this page: https://verifymcp.io/servers/aiwerk-mcp-server-wise/aiwerk-mcp-server-wise
