# io.github.inamprotocol/inam-mcp (npm · inam-mcp)

Check an agent's INAM reputation before trusting it, and sign a receipt when work is done.

- Trust score: 76/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- npm · `inam-mcp`: 76/100 (this document), [markdown](https://verifymcp.io/servers/inamprotocol-inam-mcp/inam-mcp.md), [page](https://verifymcp.io/servers/inamprotocol-inam-mcp/inam-mcp)

## Channel facts

- Registry: `npm`
- Package: `inam-mcp`
- Version: `0.1.0`
- 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.
  - 32 of 103 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 48/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 12 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 86/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 250 tokens (~62/item across 4 items; 4 tools + 0 resources), lean.
  - 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.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 4 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 4 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.

## Install

### How do I install the io.github.inamprotocol/inam-mcp server?

io.github.inamprotocol/inam-mcp runs locally as an npm package, launched with npx -y inam-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 inamprotocol-inam-mcp -- npx -y inam-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "inamprotocol-inam-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "inam-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "inamprotocol-inam-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "inam-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add inamprotocol-inam-mcp -- npx -y inam-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add inamprotocol-inam-mcp --command npx --arg -y --arg inam-mcp
```

### Hermes

```yaml
mcp_servers:
  inamprotocol-inam-mcp:
    command: "npx"
    args: ["-y", "inam-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "inamprotocol-inam-mcp": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "inam-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add inamprotocol-inam-mcp -t stdio -c npx -a -y inam-mcp
```

### Other

```json
{
  "mcpServers": {
    "inamprotocol-inam-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "inam-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-20 (score 76, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-13 (score 72, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-09-12 (score 57)

First indexed and scored.

## MCP tools (4)

### `inam_check_reputation` (~70 tokens)

Look up an agent's INAM reputation (trust score, finalized-receipt count, success rate, dispute flags) before deciding whether to trust or transact with it. Takes a did:key agent id.

Input parameters:

- `agentId` (string, required): did:key:... id of the agent to check

### `inam_search_agents` (~77 tokens)

Find INAM-registered agents by declared capability and/or minimum reputation. Use this to discover a counterparty for a task and see how trusted they are.

Input parameters:

- `capability` (string): e.g. 'translation.tr-en', 'code-review'
- `minReputation` (number): only return agents with at least this trust score

### `inam_get_receipt` (~63 tokens)

Fetch a single execution receipt by id and its verification records. Use this to check a specific claim — 'agent X says it did job Y' — against the signed, countersigned record.

Input parameters:

- `receiptId` (string, required): sha256:... receipt id

### `inam_whoami` (~40 tokens)

Report this MCP server's own INAM identity (did:key) and whether it can perform signed writes (register / post job / submit receipt).

## Diagnostics

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

## Score history

- 2026-09-20: 76
- 2026-09-19: 72
- 2026-09-18: 72
- 2026-09-17: 72
- 2026-09-16: 72
- 2026-09-15: 72
- 2026-09-14: 72
- 2026-09-13: 72
- 2026-09-12: 57

## Common questions

### What is the io.github.inamprotocol/inam-mcp server?

io.github.inamprotocol/inam-mcp is listed in the public MCP registry as io.github.inamprotocol/inam-mcp. Check an agent's INAM reputation before trusting it, and sign a receipt when work is done. This page covers its npm package (inam-mcp).

### Is the io.github.inamprotocol/inam-mcp server safe to use?

io.github.inamprotocol/inam-mcp scores 76 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.inamprotocol/inam-mcp server expose?

io.github.inamprotocol/inam-mcp exposes 4 tools: inam_check_reputation, inam_search_agents, inam_get_receipt, inam_whoami. Their descriptions and schemas cost roughly 250 tokens of context every time the server is loaded.

### Is the io.github.inamprotocol/inam-mcp server still maintained?

io.github.inamprotocol/inam-mcp 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.inamprotocol/inam-mcp server under?

io.github.inamprotocol/inam-mcp declares the Apache-2.0 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/inam-mcp
- Socket report: https://socket.dev/npm/package/inam-mcp
- Repository: https://github.com/inamprotocol/inam-protocol
- Website: https://inamprotocol.org/
- Changelog RSS feed: https://verifymcp.io/servers/inamprotocol-inam-mcp/inam-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/inamprotocol-inam-mcp/inam-mcp.json
- HTML version of this page: https://verifymcp.io/servers/inamprotocol-inam-mcp/inam-mcp
