# Understand Anything - MCP (npm · ua-mcp)

A powerful MCP server for codebase architecture analysis and automated governance.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `ua-mcp`
- Version: `1.2.16`
- 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 (113 of 114), 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 (113 of 114), 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 14 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 702 tokens (~46/item across 15 items; 15 tools + 0 resources), lean.
  - 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 uamcp-ua-mcp -- npx -y ua-mcp
```

### Codex

```bash
codex mcp add uamcp-ua-mcp -- npx -y ua-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add uamcp-ua-mcp --command npx --arg -y --arg ua-mcp
```

### Hermes

```yaml
mcp_servers:
  uamcp-ua-mcp:
    command: "npx"
    args: ["-y", "ua-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "uamcp-ua-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "ua-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, +4)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 64, +59)

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

### 2026-07-31 (score 5, −41)

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

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

First indexed and scored.

## MCP tools (15)

### `ua_status` (~34 tokens)

Check the operational status of the Understand-Anything MCP server. Call this to verify if the knowledge graph is successfully loaded and active.

### `ua_scan` (~31 tokens)

Check if a knowledge graph file is present and currently loaded. Returns instructions on how to generate the graph if missing.

### `ua_graph_summary` (~33 tokens)

Get a high-level statistical summary of the codebase knowledge graph. Returns total node and edge counts to gauge project size.

### `ua_architecture_report` (~33 tokens)

Generate a module-level architecture report from the knowledge graph. Returns a breakdown of files per directory to identify main components.

### `ua_dependency_report` (~37 tokens)

Generate a top-level dependency report from the knowledge graph. Identifies the most heavily depended-on files in the codebase (high fan-in).

### `ua_explain` (~65 tokens)

Explain a specific part of the codebase by retrieving its 1-hop dependencies. Call this to understand what a file imports and where it is used.

Input parameters:

- `target` (string, required): Required. The precise file path or module name to explain. Example: 'src/core/db.ts'.

### `ua_onboarding_doc` (~32 tokens)

Generate an onboarding overview document for new developers. Call this first when entering a new codebase to get oriented.

### `ua_find_callers` (~84 tokens)

Find all callers of a specific function or file up to a certain depth. Helps trace execution paths.

Input parameters:

- `maxDepth` (number): Optional. Maximum search depth. Defaults to 2 (max 3).
- `target` (string, required): Required. The target file or function ID (e.g., 'src/api/handler.ts' or 'func:processData').

### `ua_impact_analysis` (~52 tokens)

Analyze the downstream impact of changing a specific file. Returns a list of files that depend on it.

Input parameters:

- `target` (string, required): Required. The file being modified (e.g., 'src/core/types.ts').

### `ua_precheck` (~57 tokens)

Pre-flight architectural risk check. Call this before modifying any critical systems or refactoring to estimate risk radius.

Input parameters:

- `target` (string, required): Required. The primary file or module you plan to modify (e.g., 'src/core/db.ts').

### `ua_rules` (~23 tokens)

Evaluate architectural constraints against the current knowledge graph. Generates a full violation report.

### `ua_rules_check` (~24 tokens)

Mid-session continuous audit. Evaluate constraints to ensure recent changes haven't introduced violations.

### `ua_init_rules` (~27 tokens)

Initialize a starter .ua-rules.json file in the workspace if one doesn't already exist.

### `ua_ci_check` (~68 tokens)

Run a CI-style impact analysis on a PR diff to identify risk factors. Returns affected files, risk level, and potential issues.

Input parameters:

- `pr_diff` (string, required): Required. The raw git diff string representing the pull request changes. Must contain '+++ b/' or '--- a/' paths.

### `ua_validate_graph` (~43 tokens)

Validate the structural integrity and syntax of the loaded knowledge graph JSON.

Input parameters:

- `graphData` (string, required): Required. The raw JSON string representation of the knowledge graph to validate.

## Diagnostics

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

## Score history

- 2026-08-03: 68
- 2026-08-02: 64
- 2026-08-01: 5
- 2026-07-31: 5
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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