# Local Model Suitability MCP (npm · local-model-suitability-mcp)

Check if a task runs locally vs cloud. Save money on calls that don't need cloud inference.

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

## Components

- remote · `local-model-suitability-mcp-production.up.railway.app`: 61/100, [markdown](https://verifymcp.io/servers/ojaskord-local-model-suitability-mcp/local-model-suitability-mcp-production.md), [page](https://verifymcp.io/servers/ojaskord-local-model-suitability-mcp/local-model-suitability-mcp-production)
- npm · `local-model-suitability-mcp`: 63/100 (this document), [markdown](https://verifymcp.io/servers/ojaskord-local-model-suitability-mcp/local-model-suitability-mcp.md), [page](https://verifymcp.io/servers/ojaskord-local-model-suitability-mcp/local-model-suitability-mcp)

## Channel facts

- Registry: `npm`
- Package: `local-model-suitability-mcp`
- Version: `1.1.23`
- 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**: 88/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 40 of 42 dependencies flagged as unhealthy (40 deprecated).
- **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 2 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 65/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 255 tokens (~255/item across 1 items; 1 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**: 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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add ojaskord-local-model-suitability-mcp -- npx -y local-model-suitability-mcp
```

### Codex

```bash
codex mcp add ojaskord-local-model-suitability-mcp -- npx -y local-model-suitability-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add ojaskord-local-model-suitability-mcp --command npx --arg -y --arg local-model-suitability-mcp
```

### Hermes

```yaml
mcp_servers:
  ojaskord-local-model-suitability-mcp:
    command: "npx"
    args: ["-y", "local-model-suitability-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "ojaskord-local-model-suitability-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "local-model-suitability-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-02 (score 63, +16)

- [security regression] Known CVEs: pass → unverified
- [security regression] Provenance: fail → unverified
- [security regression] Install scripts: pass → unverified
- [security improvement] Malware scan: unverified → pass
- [functional regression] Dependency health: 0.86 → 0.07
- [functional regression] License: pass → unverified
- [functional regression] Dependency health: 0.86 → unverified
- [functional regression] Maintenance: pass → unverified
- [functional improvement] Stability: unverified → 0.23
- [functional] Licence: MIT

### 2026-07-31 (score 47, −12)

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

### 2026-07-30 (score 59, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-28 (score 77, +32)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → 0.86
- [functional improvement] Schema quality: unverified → good
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

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

First indexed and scored.

## MCP tools (1)

### `check_local_viability` (~255 tokens)

Checks whether a task can be handled by a local model instead of a cloud API. Call this BEFORE your agent routes any task to a cloud model — at the moment a task is ready to be sent and the model has not yet been selected. Use this when your agent is about to make a cloud inference call and wants to determine whether a local model could handle it at lower cost. Returns LOCAL/CLOUD/EITHER verdict with recommended model. If verdict is LOCAL, skip the cloud call entirely — saves cost on every routable inference call. Pass data_sensitivity=CONFIDENTIAL to force LOCAL verdict for tasks that must not leave the machine. Do not route to cloud without checking local viability first.

Input parameters:

- `data_sensitivity` (string): CONFIDENTIAL forces LOCAL verdict regardless of task complexity — data must not leave the machine. Defaults to PUBLIC.
- `quality_threshold` (string): PRODUCTION = output quality matters and errors are costly. PROTOTYPE = approximate results acceptable. BEST_EFFORT = speed and cost trump quality. Defaults to PRODUCTION.
- `task` (string, required): The exact task you are about to send to a cloud model. Be specific — include what the input is and what output you need.

Output parameters:

- `_disclaimer` (string)
- `analysis_type` (string)
- `checked_at` (string)
- `cloud_justified_reason` (string|null): Non-null only when verdict is CLOUD
- `confidence` (string)
- `data_sensitivity` (string)
- `data_sensitivity_override` (boolean): Present only when data_sensitivity=CONFIDENTIAL forced a LOCAL verdict
- `estimated_cost_saving` (string)
- `reason` (string)
- `recommended_local_models` (array): Present when verdict is LOCAL or EITHER
- `task_quality_threshold` (string)
- `verdict` (string)

## Diagnostics

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

## Score history

- 2026-08-03: 63
- 2026-08-02: 63
- 2026-08-01: 47
- 2026-07-31: 47
- 2026-07-30: 59
- 2026-07-29: 77
- 2026-07-28: 77
- 2026-07-27: 45

## Links

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