# io.github.wspringer/math-svg-mcp (npm · math-svg-mcp)

Convert LaTeX math expressions to crisp, scalable SVG images

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

## Components

- npm · `math-svg-mcp`: 77/100 (this document), [markdown](https://verifymcp.io/servers/wspringer-math-svg-mcp/math-svg-mcp.md), [page](https://verifymcp.io/servers/wspringer-math-svg-mcp/math-svg-mcp)

## Channel facts

- Registry: `npm`
- Package: `math-svg-mcp`
- Version: `1.1.2`
- 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 (103 of 107), 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 (103 of 107), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to wspringer/math-svg-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 177 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 63/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 436 tokens (~218/item across 2 items; 2 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**: 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 wspringer-math-svg-mcp -- npx -y math-svg-mcp
```

### Codex

```bash
codex mcp add wspringer-math-svg-mcp -- npx -y math-svg-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add wspringer-math-svg-mcp --command npx --arg -y --arg math-svg-mcp
```

### Hermes

```yaml
mcp_servers:
  wspringer-math-svg-mcp:
    command: "npx"
    args: ["-y", "math-svg-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "wspringer-math-svg-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "math-svg-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 77, −2)

No change was recorded against any check on this day. Supply Chain Security went from 97 to 87. Other categories moved too: Stability & Change Management rose 3.

### 2026-08-02 (score 79, +55)

- [security improvement] Malware scan: unverified → pass
- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] The attested source repository moved: wspringer/math-svg-mcp
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Stability: unverified → 0.20
- [functional] Licence: MIT

### 2026-08-01 (score 24, −24)

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

### 2026-07-31 (score 48, +22)

- [security regression] Malware scan: pass → unverified
- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security] The attested source repository moved: wspringer/math-svg-mcp
- [functional regression] Dependency health: partial → unverified
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: MIT

### 2026-07-29 (score 26, −18)

- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (2)

### `latex_to_svg` (~207 tokens)

Convert a LaTeX math expression to SVG and return the SVG content directly. Best for small expressions where you need the SVG inline.

Input parameters:

- `display` (boolean): Display mode (block) vs inline mode. Default: true
- `fontSize` (number): Font size (em size) in the same unit as the output. E.g., 11 for 11pt when unit=pt, or 16 for 16px when unit=px. Default: 16
- `latex` (string, required): The LaTeX math expression to convert
- `unit` (string, required): Output unit for width/height. Use pt for print/InDesign, px for web/browsers, mm for metric print, ex to keep relative units
- `xHeightRatio` (number): Ratio of x-height to font size. Varies by font: Times 0.45, Helvetica 0.52, Computer Modern 0.43. Default: 0.5

### `latex_to_svg_file` (~229 tokens)

Convert a LaTeX math expression to SVG and save it to a file. Best for larger expressions or when you need to reference the SVG by path.

Input parameters:

- `display` (boolean): Display mode (block) vs inline mode. Default: true
- `fontSize` (number): Font size (em size) in the same unit as the output. E.g., 11 for 11pt when unit=pt, or 16 for 16px when unit=px. Default: 16
- `latex` (string, required): The LaTeX math expression to convert
- `outputPath` (string, required): The file path where the SVG should be saved
- `unit` (string, required): Output unit for width/height. Use pt for print/InDesign, px for web/browsers, mm for metric print, ex to keep relative units
- `xHeightRatio` (number): Ratio of x-height to font size. Varies by font: Times 0.45, Helvetica 0.52, Computer Modern 0.43. Default: 0.5

## Diagnostics

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

## Score history

- 2026-08-03: 77
- 2026-08-02: 79
- 2026-08-01: 24
- 2026-07-31: 48
- 2026-07-29: 26
- 2026-07-28: 44
- 2026-07-27: 44

## Links

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