# com.azurecarbon/kodiak (npm · kodiak-mcp)

Verifiable fact-checking: verdict, confidence, sources, and a tamper-evident certificate.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `kodiak-mcp`
- Version: `0.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**: 100/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.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 9 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 74/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 555 tokens (~138/item across 4 items; 4 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.
- **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 com-azurecarbon-kodiak -- npx -y kodiak-mcp
```

### Codex

```bash
codex mcp add com-azurecarbon-kodiak -- npx -y kodiak-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add com-azurecarbon-kodiak --command npx --arg -y --arg kodiak-mcp
```

### Hermes

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

### Other

```json
{
  "mcpServers": {
    "com-azurecarbon-kodiak": {
      "command": "npx",
      "args": [
        "-y",
        "kodiak-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 64, +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 63, +18)

- [security improvement] Malware scan: unverified → pass
- [functional improvement] Stability: unverified → 0.23

### 2026-07-31 (score 45, −11)

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

### 2026-07-27 (score 56, 0)

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

### 2026-07-26 (score 56)

First indexed and scored.

## MCP tools (4)

### `kodiak_check_claim` (~275 tokens)

Fact-check a single factual claim before you rely on it or state it in your output. Kodiak retrieves real sources, weighs them, and returns a verdict (supported / false / mixed / unsupported), a calibrated confidence (0-100), the cited sources, and a tamper-evident certificate ID that anyone can later verify. Use this to avoid shipping unverified or confabulated facts. Consumes a few cents of Kodiak credit per call. At depth 1-3 the check is synchronous and returns the certificate directly. At depth 4-5 (thorough or forensic) it returns a job_id immediately and runs in the background — use kodiak_check_status(job_id) to poll for the result. This keeps long checks from being killed by MCP client tool timeouts.

Input parameters:

- `claim` (string, required): One specific, atomic factual claim to verify — a declarative statement, not a question. Resolve pronouns; one assertion per call.
- `depth` (number): Verification rigor 1-5. 1 = quick (~5c), 3 = thorough (default, ~15c, sync), 4 = deep (~30c, async), 5 = forensic (~45c, async). Depth 4-5 return a job_id — call kodiak_check_status to poll.

### `kodiak_check_status` (~147 tokens)

Poll the status of a background fact-check started by kodiak_check_claim at depth 4-5. Returns { status: "queued" | "running" | "completed" | "failed", ... }. When status is "completed", the full certificate (verdict, confidence, citations, chain_hash) is included. When "failed", an error message is included and the credits are refunded. Free — no credits consumed. Poll roughly every 20 seconds; a depth-5 check typically completes within 2-3 minutes.

Input parameters:

- `job_id` (string, required): The job_id returned by kodiak_check_claim at depth 4-5 (format: "chk_...").

### `kodiak_verify_certificate` (~98 tokens)

Verify a Kodiak certificate by its ID. Recomputes the certificate hash chain and reports whether it is intact and unaltered — proving the verdict, sources, and issue time are exactly as originally certified. No API key or credits required. Use to independently confirm a certificate you were handed.

Input parameters:

- `certificate_id` (string, required): The certificate ID, e.g. "KDK-abc123...". Public single-claim certificates only.

### `kodiak_credits` (~35 tokens)

Check the Kodiak credit balance for your API key plus the current per-depth pricing and any volume discount. No credits consumed.

## Diagnostics

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

## Score history

- 2026-08-03: 64
- 2026-08-02: 63
- 2026-08-01: 45
- 2026-07-31: 45
- 2026-07-30: 56
- 2026-07-28: 56
- 2026-07-27: 56
- 2026-07-26: 56

## Links

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