# io.github.aapd-studio/omnideck (npm · omnideck-mcp)

Local privacy-first tools: redact secrets, decode JWTs, compare LLM costs. No network calls.

- Trust score: 71/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- npm · `omnideck-mcp`: 71/100 (this document), [markdown](https://verifymcp.io/servers/aapd-studio-omnideck/omnideck-mcp.md), [page](https://verifymcp.io/servers/aapd-studio-omnideck/omnideck-mcp)

## Channel facts

- Registry: `npm`
- Package: `omnideck-mcp`
- Version: `1.0.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-09-20.

- **Supply Chain Security**: 98/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.
  - 31 of 97 dependencies flagged as unhealthy.
- **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 3 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 81/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 571 tokens (~95/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **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.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 6 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 6 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the io.github.aapd-studio/omnideck MCP server?

io.github.aapd-studio/omnideck runs locally as an npm package, launched with npx -y omnideck-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add aapd-studio-omnideck -- npx -y omnideck-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "aapd-studio-omnideck": {
      "command": "npx",
      "args": [
        "-y",
        "omnideck-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "aapd-studio-omnideck": {
      "command": "npx",
      "args": [
        "-y",
        "omnideck-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add aapd-studio-omnideck -- npx -y omnideck-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add aapd-studio-omnideck --command npx --arg -y --arg omnideck-mcp
```

### Hermes

```yaml
mcp_servers:
  aapd-studio-omnideck:
    command: "npx"
    args: ["-y", "omnideck-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "aapd-studio-omnideck": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "omnideck-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add aapd-studio-omnideck -t stdio -c npx -a -y omnideck-mcp
```

### Other

```json
{
  "mcpServers": {
    "aapd-studio-omnideck": {
      "command": "npx",
      "args": [
        "-y",
        "omnideck-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-09-16 (score 71)

First indexed and scored.

## MCP tools (6)

### `redact_sensitive_data` (~115 tokens)

Redact sensitive data

Mask emails, API keys, credit cards, IBANs, IP addresses and phone numbers in a block of text. Use this BEFORE sending user-supplied text, logs, config files or pasted documents to any external API, or before quoting them back in a shared transcript. Runs entirely locally — nothing is transmitted.

Input parameters:

- `categories` (array): Which categories to mask. Defaults to all: emails, api_keys, credit_cards, iban, ip_addresses, phone_numbers.
- `text` (string, required): The text to scrub.

### `decode_jwt` (~85 tokens)

Decode a JWT

Decode the header and payload of a JSON Web Token and report its expiry status. Does NOT verify the signature (no secret is involved, and none should be pasted anywhere). Use this instead of an online JWT decoder — a token is a live credential and should never be pasted into a website.

Input parameters:

- `token` (string, required): The JWT, with or without a 'Bearer ' prefix.

### `estimate_llm_cost` (~112 tokens)

Estimate and compare LLM cost

Compare what one request would cost across GPT, Claude and Gemini models, sorted cheapest first. Pass the prompt text, or pass input_tokens directly if you already know the count. Useful for picking a model before running a large batch job.

Input parameters:

- `input_tokens` (integer): Exact input token count, if you already have it. Overrides `text`.
- `output_tokens` (integer): Expected output tokens. Defaults to 500.
- `text` (string): The prompt text. Its tokens are counted for you.

### `split_for_context` (~86 tokens)

Split text for a context window

Break a long document into chunks that fit a target context window, cutting on paragraph boundaries (falling back to sentence boundaries) so no chunk ends mid-thought. Use when a file is too large to process in one pass.

Input parameters:

- `max_tokens` (integer): Approximate token budget per chunk. Defaults to 8000.
- `text` (string, required): The document to split.

### `check_output_fidelity` (~102 tokens)

Check AI output against its source

Flag names, numbers and dates that appear in an AI-generated summary but NOT in the source text it was based on — the usual shape of a hallucination. This is a lexical heuristic, not a fact-checker: it catches invented specifics, not wrong reasoning. Use it to decide what to verify by hand.

Input parameters:

- `ai_output` (string, required): The AI-generated text to check.
- `original` (string, required): The source text the output was generated from.

### `hash_text` (~71 tokens)

Hash text locally

Compute an MD5, SHA-1, SHA-256 or SHA-512 digest of a string, locally. Use instead of an online hash generator when the input is a password, secret or any private value.

Input parameters:

- `algorithm` (string): Digest algorithm.
- `text` (string, required): The string to hash.

## Diagnostics

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

## Score history

- 2026-09-20: 71
- 2026-09-19: 71
- 2026-09-18: 71
- 2026-09-17: 71
- 2026-09-16: 71

## Common questions

### What is the io.github.aapd-studio/omnideck MCP server?

io.github.aapd-studio/omnideck is an MCP server listed in the public MCP registry as io.github.aapd-studio/omnideck. Local privacy-first tools: redact secrets, decode JWTs, compare LLM costs. No network calls. This page covers its npm package (omnideck-mcp).

### Is the io.github.aapd-studio/omnideck MCP server safe to use?

io.github.aapd-studio/omnideck scores 71 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the io.github.aapd-studio/omnideck MCP server expose?

io.github.aapd-studio/omnideck exposes 6 tools: redact_sensitive_data, decode_jwt, estimate_llm_cost, split_for_context, check_output_fidelity, hash_text. Their descriptions and schemas cost roughly 571 tokens of context every time the server is loaded.

### Is the io.github.aapd-studio/omnideck MCP server still maintained?

io.github.aapd-studio/omnideck is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the io.github.aapd-studio/omnideck MCP server under?

io.github.aapd-studio/omnideck declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

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