# ClaudeInk — Knowledge Vault (npm · @claudeink/mcp-server)

Save, search, and compile valuable knowledge from your Claude conversations.

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

## Components

- npm · `@claudeink/mcp-server`: 57/100 (this document), [markdown](https://verifymcp.io/servers/weekdmond-claudeink/claudeink-mcp-server.md), [page](https://verifymcp.io/servers/weekdmond-claudeink/claudeink-mcp-server)

## Channel facts

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

- **Supply Chain Security**: 79/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known high-severity CVE affects uuid 8.3.2, reached via node-cron > uuid. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (136 of 140), so this covers what we could see, not the whole tree.
- **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 123 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 944 tokens (~78/item across 12 items; 12 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 83/100
  - 75% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% 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 weekdmond-claudeink -- npx -y @claudeink/mcp-server
```

### Codex

```bash
codex mcp add weekdmond-claudeink -- npx -y @claudeink/mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add weekdmond-claudeink --command npx --arg -y --arg @claudeink/mcp-server
```

### Hermes

```yaml
mcp_servers:
  weekdmond-claudeink:
    command: "npx"
    args: ["-y", "@claudeink/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "weekdmond-claudeink": {
      "command": "npx",
      "args": [
        "-y",
        "@claudeink/mcp-server"
      ]
    }
  }
}
```

## 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 57, +3)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 54, +25)

- [security regression] CVE-2026-41907 affects this package: high
- [security regression] Provenance: unverified → fail
- [security regression] Known CVEs: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] License: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 29, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-07-31 (score 14, −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 38)

First indexed and scored.

## MCP tools (12)

### `workflow.init` (~61 tokens)

初始化知识库（创建目录 + 激活 License + 同步云端）

Input parameters:

- `licenseKey` (string): License Key（可选，传入则自动激活）
- `workDir` (string, required): 工作流初始化目标目录（绝对路径）

### `sync` (~32 tokens)

从云端同步知识元数据

Input parameters:

- `workDir` (string): 工作目录（默认使用配置中的 workflowDir）

### `ink.save` (~124 tokens)

保存知识片段到本地知识库（对话洞察、决策、分析等）

Input parameters:

- `category` (string): 分类：insight / decision / analysis / idea / reference / action
- `content` (string, required): 要保存的内容（必填）
- `source_type` (string): 来源类型：conversation / url / manual
- `tags` (array): 标签（Claude 自动生成，用户可指定）
- `title` (string, required): 标题（Claude 自动生成）
- `url` (string): 来源 URL（如果是外部素材）

### `ink.search` (~100 tokens)

搜索知识库（支持关键词、标签、分类、时间范围过滤）

Input parameters:

- `category` (string): 按分类过滤
- `date_from` (string): 起始日期（ISO 格式）
- `date_to` (string): 截止日期（ISO 格式）
- `limit` (number): 返回数量，默认 10
- `query` (string): 搜索关键词
- `tags` (array): 按标签过滤

### `ink.get` (~28 tokens)

获取知识片段完整内容

Input parameters:

- `id` (string, required): 知识片段 ID

### `ink.review` (~98 tokens)

按时间段回顾知识库（统计 + 列表）

Input parameters:

- `category` (string): 按分类过滤
- `date_from` (string): 自定义起始日期（ISO 格式，period=custom 时使用）
- `date_to` (string): 自定义截止日期（ISO 格式，period=custom 时使用）
- `period` (string): 回顾时间段：today / week / month / custom

### `ink.update` (~77 tokens)

更新已保存的知识片段（标题/内容/标签/分类）

Input parameters:

- `category` (string): 新分类
- `content` (string): 新内容
- `id` (string, required): 知识片段 ID
- `tags` (array): 新标签（完整替换）
- `title` (string): 新标题

### `ink.delete` (~50 tokens)

删除知识片段（需确认）

Input parameters:

- `confirm` (boolean): 确认删除（必须为 true 才会执行删除）
- `id` (string, required): 知识片段 ID

### `ink.compile` (~119 tokens)

整合多条知识片段为结构化内容（按 ID 或搜索条件）

Input parameters:

- `format` (string): 输出格式：outline（大纲）/ article（文章）/ summary（摘要）
- `ids` (array): 指定要整合的知识片段 ID 列表
- `instruction` (string): 额外整合指令
- `query` (string): 搜索条件（与 ids 二选一）
- `tags` (array): 按标签筛选（与 query 搭配）

### `ink.tags` (~101 tokens)

标签管理（列出 / 重命名 / 合并标签）

Input parameters:

- `action` (string, required): 操作：list（列出所有标签）/ rename（重命名）/ merge（合并）
- `new_tag` (string): 新标签名（rename 时使用）
- `source_tags` (array): 要合并的源标签列表（merge 时使用）
- `tag` (string): 目标标签（rename/merge 时使用）

### `source.crawl` (~45 tokens)

触发爬虫抓取（内容自动存入知识库）

Input parameters:

- `sourceId` (string): 指定爬虫源名称，不传则全量

### `source.subscribe` (~109 tokens)

管理订阅源（添加/删除/列出爬虫源）

Input parameters:

- `action` (string, required): 操作类型
- `crawlConfig` (object): 爬取适配规则（Claude 分析生成）
- `icon` (string): 来源 icon URL
- `id` (string): 订阅源 ID
- `name` (string): 订阅源名称
- `type` (string): 源类型
- `url` (string): RSS/博客 URL

## Diagnostics

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

## Score history

- 2026-08-03: 57
- 2026-08-02: 54
- 2026-08-01: 29
- 2026-07-31: 14
- 2026-07-30: 38
- 2026-07-28: 38
- 2026-07-27: 38

## Links

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