# WEEEK (smart) (npm · weeek-mcp-smart)

WEEEK tasks by name, not IDs — an MCP server

- Trust score: 70/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `weeek-mcp-smart`: 70/100 (this document), [markdown](https://verifymcp.io/servers/ilyaivanchikov-weeek-mcp-smart/weeek-mcp-smart.md), [page](https://verifymcp.io/servers/ilyaivanchikov-weeek-mcp-smart/weeek-mcp-smart)

## Channel facts

- Registry: `npm`
- Package: `weeek-mcp-smart`
- Version: `0.4.4`
- 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 (96 of 100), 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 (96 of 100), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to IlyaIvanchikov/weeek-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 1 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 64/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 761 tokens (~63/item across 12 items; 12 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**: 68/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 3% of tool parameters carry a description.
- **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

### Claude

```bash
claude mcp add ilyaivanchikov-weeek-mcp-smart -- npx -y weeek-mcp-smart
```

### Codex

```bash
codex mcp add ilyaivanchikov-weeek-mcp-smart -- npx -y weeek-mcp-smart
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add ilyaivanchikov-weeek-mcp-smart --command npx --arg -y --arg weeek-mcp-smart
```

### Hermes

```yaml
mcp_servers:
  ilyaivanchikov-weeek-mcp-smart:
    command: "npx"
    args: ["-y", "weeek-mcp-smart"]
```

### Other

```json
{
  "mcpServers": {
    "ilyaivanchikov-weeek-mcp-smart": {
      "command": "npx",
      "args": [
        "-y",
        "weeek-mcp-smart"
      ]
    }
  }
}
```

## 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-02 (score 70, +65)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [security] The attested source repository moved: IlyaIvanchikov/weeek-mcp
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] MCP protocol: unverified → pass
- [functional] First check of Schema quality: good
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 3
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 5)

First indexed and scored.

## MCP tools (12)

### `weeek_version` (~27 tokens)

Return this MCP server's name and version, so callers can check which build is running.

### `weeek_list_projects` (~20 tokens)

List WEEEK projects (id + name).

### `weeek_list_tasks` (~118 tokens)

List WEEEK tasks with server-side filters. Set allPages=true together with userId, startDate, and endDate to fetch every matching page inside the connector without returning unrelated workspace pages.

Input parameters:

- `allPages` (boolean)
- `completed` (boolean)
- `endDate` (string)
- `limit` (integer)
- `offset` (integer)
- `projectId` (integer)
- `sortBy` (string)
- `startDate` (string)
- `userId` (string)

### `weeek_get_task` (~32 tokens)

Get one WEEEK task by id (includes its assignees).

Input parameters:

- `id` (integer, required)

### `weeek_list_members` (~48 tokens)

List WEEEK workspace members (id + display name). Use to find the id for assigning a task to someone; pass that id as `assignee` to weeek_create_task.

### `weeek_create_task` (~144 tokens)

Create a WEEEK task. Accepts project/column/assignee by NAME or id, and a natural-language `due` date. One call — no need to look up ids first. Omit `assignee` to self-assign (WEEEK assigns the token owner); pass a member name/id to assign someone else. Reassigning an existing task is not supported by the WEEEK public API — set the assignee at creation.

Input parameters:

- `assignee`
- `column`
- `description` (string)
- `due` (string)
- `project` (string|number, required)
- `title` (string, required)

### `weeek_create_tasks` (~42 tokens)

Create many WEEEK tasks in one call. Returns a per-item report; one bad name does not abort the batch.

Input parameters:

- `tasks` (array, required)

### `weeek_update_task` (~82 tokens)

Update an existing WEEEK task's title or due date. NOTE: description is NOT updatable — WEEEK's API silently ignores it on update; set the description at create time (weeek_create_task) or edit it in the UI.

Input parameters:

- `due` (string)
- `id` (integer, required)
- `title` (string)

### `weeek_delete_task` (~72 tokens)

Permanently delete a WEEEK task by id. Irreversible — the task is removed, not just completed. Requires confirm:true; to merely close a task use weeek_complete_task instead.

Input parameters:

- `confirm` (boolean, required): Must be true to confirm this irreversible deletion.
- `id` (integer, required)

### `weeek_attach_file` (~78 tokens)

Attach a local file to a WEEEK task. For safety only files inside the allowed directory (the server's working directory by default, or WEEEK_ATTACH_DIR if set) — and its subfolders — may be attached; paths outside it are refused.

Input parameters:

- `path` (string, required)
- `task_id` (integer, required)

### `weeek_move_task` (~59 tokens)

Move a WEEEK task to a column (by name or id, scoped to the given board) on that board.

Input parameters:

- `board_id` (integer, required)
- `column` (string|number, required)
- `id` (integer, required)

### `weeek_complete_task` (~39 tokens)

Mark a WEEEK task complete, or reopen it (completed:false).

Input parameters:

- `completed` (boolean, required)
- `id` (integer, required)

## Diagnostics

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

## Score history

- 2026-08-03: 70
- 2026-08-02: 70
- 2026-08-01: 5

## Links

- npm package: https://www.npmjs.com/package/weeek-mcp-smart
- Socket report: https://socket.dev/npm/package/weeek-mcp-smart
- Repository: https://github.com/IlyaIvanchikov/weeek-mcp
- Changelog RSS feed: https://verifymcp.io/servers/ilyaivanchikov-weeek-mcp-smart/weeek-mcp-smart/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/ilyaivanchikov-weeek-mcp-smart/weeek-mcp-smart/changelog.json
- HTML version of this page: https://verifymcp.io/servers/ilyaivanchikov-weeek-mcp-smart/weeek-mcp-smart
