# SOAPNoteAPI (npm · soapnoteapi-mcp)

Generate clinical SOAP notes, billing codes, and visit summaries from transcripts or audio.

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

## Components

- npm · `soapnoteapi-mcp`: 68/100 (this document), [markdown](https://verifymcp.io/servers/com-soapnoteapi-soapnoteapi-mcp/soapnoteapi-mcp.md), [page](https://verifymcp.io/servers/com-soapnoteapi-soapnoteapi-mcp/soapnoteapi-mcp)

## Channel facts

- Registry: `npm`
- Package: `soapnoteapi-mcp`
- Version: `0.1.1`
- 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-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - 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 47 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 72/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 864 tokens (~144/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**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 92/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 77% 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 com-soapnoteapi-soapnoteapi-mcp -- npx -y soapnoteapi-mcp
```

### Codex

```bash
codex mcp add com-soapnoteapi-soapnoteapi-mcp -- npx -y soapnoteapi-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add com-soapnoteapi-soapnoteapi-mcp --command npx --arg -y --arg soapnoteapi-mcp
```

### Hermes

```yaml
mcp_servers:
  com-soapnoteapi-soapnoteapi-mcp:
    command: "npx"
    args: ["-y", "soapnoteapi-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "com-soapnoteapi-soapnoteapi-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "soapnoteapi-mcp"
      ]
    }
  }
}
```

## 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 68, +1)

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

### 2026-08-02 (score 67, +48)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → excellent
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 19, −25)

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

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

First indexed and scored.

## MCP tools (6)

### `list_specialties` (~45 tokens)

List medical specialties

List the medical specialties (and template variants) supported by SOAPNoteAPI. Use the returned specialty IDs as the `specialty` argument for note generation. No API key required.

### `generate_soap_note` (~228 tokens)

Generate SOAP note from transcript

Generate a structured SOAP note (Subjective, Objective, Assessment, Plan) from a clinical transcript or shorthand. Optionally returns ICD-10/CPT/HCPCS billing-code suggestions and a plain-language patient summary. Billing codes are AI decision support and require clinician review.

Input parameters:

- `custom_instructions` (string): Free-text instructions to steer formatting/content.
- `include_billing_codes` (boolean): Return ICD-10/CPT/HCPCS billing-code suggestions.
- `include_icd11` (boolean): Also return advisory ICD-11 codes (not for US billing).
- `include_patient_summary` (boolean): Return a plain-language patient-facing summary.
- `patient` (object): Optional patient demographics & history to enrich the note.
- `patient_history` (string): Free-text prior history to enrich the note.
- `specialty` (string, required): Medical specialty. Call list_specialties for the full list.
- `template` (string): Optional template within the specialty (default "standard").
- `transcript` (string, required): Clinical transcript or shorthand to expand into a SOAP note (min ~50 characters).

### `get_note` (~70 tokens)

Retrieve a generated note

Retrieve a previously generated note by its noteId. Useful for fetching the result of an asynchronous audio job once status is 'completed'. Notes auto-expire (see expires_at).

Input parameters:

- `noteId` (string, required): The noteId returned by a generate/audio call (e.g. note_01jfg…).

### `summarize_visits` (~102 tokens)

Summarize visit history

Consolidate multiple past visits (SOAP notes and/or free-text summaries) into a longitudinal summary with key findings and active diagnoses. Useful for care coordination and chart prep.

Input parameters:

- `focus` (string): Optional focus area to bias the summary (e.g. 'diabetes management').
- `patient` (object): Optional patient demographics & history to enrich the note.
- `visits` (array, required): Chronological list of prior visits. Each needs a soap_note or a summary.

### `transcribe_audio_to_soap` (~247 tokens)

Audio recording → SOAP note

Upload a local audio recording of a clinical encounter and get back a SOAP note. Short recordings return immediately; long ones process asynchronously — by default this tool waits and returns the finished note. Supported: mp3, m4a, wav, ogg, webm, flac.

Input parameters:

- `audio_path` (string, required): Absolute path to a local audio file (mp3/m4a/wav/ogg/webm/flac).
- `custom_instructions` (string)
- `include_billing_codes` (boolean)
- `include_icd11` (boolean)
- `include_patient_summary` (boolean)
- `include_transcript` (boolean): Return the diarized, timestamped transcript.
- `patient` (object): Optional patient demographics & history to enrich the note.
- `patient_history` (string)
- `specialty` (string, required): Medical specialty. Call list_specialties for the full list.
- `template` (string)
- `timeout_seconds` (integer): Max seconds to wait when polling an async job (default 300).
- `wait_for_completion` (boolean): If true (default), poll until the note is ready for long async recordings.

### `get_audio_status` (~49 tokens)

Check audio job status

Check the processing status of an asynchronous audio-to-SOAP job by noteId.

Input parameters:

- `noteId` (string, required): The noteId returned by transcribe_audio_to_soap for a long recording.

## Diagnostics

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

## Score history

- 2026-08-03: 68
- 2026-08-02: 67
- 2026-08-01: 19
- 2026-07-31: 19
- 2026-07-30: 44
- 2026-07-28: 44
- 2026-07-27: 44

## Links

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