# io.github.Obi49/colber-mcp (npm · @colber/mcp)

Trust + coordination infrastructure for the agent economy. 27 tools across 6 Colber modules.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@colber/mcp`
- Version: `0.1.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-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (109 of 113), 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 (109 of 113), 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 (Apache-2.0).
  - Actively maintained (last published 90 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1885 tokens (~69/item across 27 items; 27 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**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% 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 obi49-colber-mcp -- npx -y @colber/mcp
```

### Codex

```bash
codex mcp add obi49-colber-mcp -- npx -y @colber/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add obi49-colber-mcp --command npx --arg -y --arg @colber/mcp
```

### Hermes

```yaml
mcp_servers:
  obi49-colber-mcp:
    command: "npx"
    args: ["-y", "@colber/mcp"]
```

### Other

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

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 60, +40)

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

### 2026-08-01 (score 20, +2)

- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-31 (score 18, −24)

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

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

First indexed and scored.

## MCP tools (27)

### `colber_identity_register` (~60 tokens)

[Colber] Register a new agent identity from an Ed25519 public key. Returns the derived did:key, the internal agent UUID, and the registration timestamp.

Input parameters:

- `ownerOperatorId` (string, required)
- `publicKey` (string, required)

### `colber_identity_resolve` (~30 tokens)

[Colber] Resolve a DID to its agent record.

Input parameters:

- `did` (string, required)

### `colber_identity_verify` (~56 tokens)

[Colber] Verify a signature against the public key bound to a DID. Returns { valid: true|false }.

Input parameters:

- `did` (string, required)
- `message` (string, required)
- `signature` (string, required)

### `colber_reputation_score` (~52 tokens)

[Colber] Return the agent's signed reputation score envelope (did, score 0..1000, scoreVersion, computedAt, ed25519 attestation).

Input parameters:

- `did` (string, required)

### `colber_reputation_history` (~65 tokens)

[Colber] Paginated history of the agent's transactions and feedbacks. Cursor-based: pass `nextCursor` from the previous page on the next call.

Input parameters:

- `cursor` (string)
- `did` (string, required)
- `limit` (number)

### `colber_reputation_verify` (~49 tokens)

[Colber] Verify a signed reputation attestation against the platform public key. Crypto-only; no DB lookup.

Input parameters:

- `attestation` (string, required)
- `score` (object, required)

### `colber_reputation_feedback` (~117 tokens)

[Colber] Submit a signed feedback after a transaction. Validates the issuer's signature against their DID and enforces (feedbackId, [from,to,tx]) idempotency.

Input parameters:

- `comment` (string)
- `dimensions` (object, required)
- `feedbackId` (string, required)
- `fromDid` (string, required)
- `rating` (number, required)
- `signature` (string, required)
- `signedAt` (string, required)
- `toDid` (string, required)
- `txId` (string, required)

### `colber_memory_store` (~81 tokens)

[Colber] Persist a new memory (text + structured payload). Generates an embedding via the configured provider. Returns the new memory id.

Input parameters:

- `encryption` (object)
- `ownerDid` (string, required)
- `payload` (object)
- `permissions` (object, required)
- `text` (string, required)
- `type` (string, required)

### `colber_memory_retrieve` (~76 tokens)

[Colber] Semantic search across memories visible to the caller (top-k by cosine similarity). Permission-aware: only memories the caller is allowed to see can be returned.

Input parameters:

- `filters` (object)
- `queryDid` (string, required)
- `queryText` (string, required)
- `topK` (number)

### `colber_memory_update` (~72 tokens)

[Colber] Update a memory's text and/or payload. Versioned (audit trail in memory_versions). Re-embeds when text changes. Owner-only.

Input parameters:

- `callerDid` (string, required)
- `id` (string, required)
- `payload` (object)
- `text` (string)

### `colber_memory_share` (~69 tokens)

[Colber] Grant additional agents read access to a memory. Owner-only. Optional `expiresAt` is recorded for future expiry enforcement.

Input parameters:

- `callerDid` (string, required)
- `expiresAt` (string)
- `id` (string, required)
- `shareWith` (array, required)

### `colber_observability_log` (~55 tokens)

[Colber] Ingest one or more log events. Batched for ClickHouse insertion. Returns the count of accepted events plus per-event rejection reasons for any that failed validation.

Input parameters:

- `events` (array, required)

### `colber_observability_trace` (~55 tokens)

[Colber] Ingest one or more W3C-aligned trace spans. Batched for ClickHouse insertion. Returns the count of accepted spans plus per-span rejection reasons.

Input parameters:

- `spans` (array, required)

### `colber_observability_query` (~79 tokens)

[Colber] Structured search over logs or trace spans within a time range. Returns matching rows ordered by timestamp descending, paginated by limit + offset.

Input parameters:

- `filters` (array)
- `limit` (number)
- `offset` (number)
- `scope` (string, required)
- `timeRange` (object, required)

### `colber_observability_alert_create` (~97 tokens)

[Colber] Create a declarative alert rule. Storage only — the evaluation engine is not implemented in this service yet.

Input parameters:

- `condition` (object, required)
- `cooldownSeconds` (number)
- `description` (string)
- `enabled` (boolean)
- `name` (string, required)
- `notification` (object)
- `ownerOperatorId` (string, required)
- `scope` (string, required)

### `colber_observability_alert_get` (~32 tokens)

[Colber] Read a single alert rule by id.

Input parameters:

- `id` (string, required)

### `colber_observability_alert_patch` (~90 tokens)

[Colber] Partially update an existing alert rule. Provide only the fields you want changed.

Input parameters:

- `condition` (object)
- `cooldownSeconds` (number)
- `description` (string)
- `enabled` (boolean)
- `id` (string, required)
- `name` (string)
- `notification` (object)
- `scope` (string)

### `colber_observability_alert_list` (~33 tokens)

[Colber] List alert rules owned by an operator.

Input parameters:

- `operatorId` (string, required)

### `colber_observability_alert_delete` (~38 tokens)

[Colber] Delete an alert rule. Returns `{ deleted: true, id }`.

Input parameters:

- `id` (string, required)

### `colber_negotiation_start` (~76 tokens)

[Colber] Create a new negotiation with terms (subject, strategy, constraints, deadline, parties). Returns the freshly-created NegotiationView. Idempotent on `idempotencyKey`.

Input parameters:

- `createdBy` (string, required)
- `idempotencyKey` (string, required)
- `terms` (object, required)

### `colber_negotiation_propose` (~78 tokens)

[Colber] Submit a signed proposal (bid or scored offer) to a negotiation. Validates the Ed25519 signature against the supplied public key + the strategy rules. Returns the updated NegotiationView.

Input parameters:

- `negotiationId` (string, required)
- `proposal` (object, required)
- `publicKey` (string, required)

### `colber_negotiation_counter` (~85 tokens)

[Colber] Submit a counter-proposal in response to an existing proposal. Strategy decides whether the counter replaces the prior proposal (multi-criteria) or competes as a fresh bid (ascending-auction).

Input parameters:

- `counterTo` (string, required)
- `negotiationId` (string, required)
- `proposal` (object, required)
- `publicKey` (string, required)

### `colber_negotiation_settle` (~99 tokens)

[Colber] Finalize the deal: verifies a signature from EVERY partyDid over `{negotiationId, winningProposalId}` (JCS canonical form). Records `negotiation.settled`. Idempotent on subsequent calls (returns the settled state).

Input parameters:

- `negotiationId` (string, required)
- `publicKeys` (array, required)
- `signatures` (array, required)
- `winningProposalId` (string)

### `colber_insurance_quote` (~87 tokens)

[Colber] Compute a premium quote for a delivery deal. Risk multiplier is derived from the reputation score of `subscriberDid`. No commitment is made; nothing is persisted.

Input parameters:

- `amountUsdc` (number, required)
- `beneficiaryDid` (string, required)
- `dealSubject` (string, required)
- `slaTerms` (object, required)
- `subscriberDid` (string, required)

### `colber_insurance_subscribe` (~111 tokens)

[Colber] Create a policy and lock the simulated escrow. Re-quotes server-side so the client cannot inject a stale premium. Idempotent on `idempotencyKey`. Rejected if the global exposure cap would be exceeded.

Input parameters:

- `amountUsdc` (number, required)
- `beneficiaryDid` (string, required)
- `dealSubject` (string, required)
- `idempotencyKey` (string, required)
- `slaTerms` (object, required)
- `subscriberDid` (string, required)

### `colber_insurance_claim` (~99 tokens)

[Colber] File a claim against an existing policy. The claim stays in `open` until the admin endpoint decides (v1 has no oracle-driven arbitrator). Idempotent on `(policyId, idempotencyKey)`.

Input parameters:

- `claimantDid` (string, required)
- `evidence` (object, required)
- `idempotencyKey` (string, required)
- `policyId` (string, required)
- `reason` (string, required)

### `colber_insurance_status` (~44 tokens)

[Colber] Read the full state of a policy: policy fields + simulated escrow holding + all claims filed against it.

Input parameters:

- `policyId` (string, required)

## Diagnostics

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

## Score history

- 2026-08-03: 64
- 2026-08-02: 60
- 2026-08-01: 20
- 2026-07-31: 18
- 2026-07-30: 42
- 2026-07-28: 42
- 2026-07-27: 42

## Links

- npm package: https://www.npmjs.com/package/@colber/mcp
- Socket report: https://socket.dev/npm/package/@colber/mcp
- Repository: https://github.com/Obi49/Colber
- Changelog RSS feed: https://verifymcp.io/servers/obi49-colber-mcp/colber-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/obi49-colber-mcp/colber-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/obi49-colber-mcp/colber-mcp
