# io.usefulapi/reclaimai (remote · reclaimai.usefulapi.io)

Read tasks, habits, events and scheduling links; create and update Reclaim tasks and habits.

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

## Components

- remote · `reclaimai.usefulapi.io`: 70/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-reclaimai/reclaimai.md), [page](https://verifymcp.io/servers/io-usefulapi-reclaimai/reclaimai)

## Channel facts

- Endpoint: `https://reclaimai.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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.

- **Endpoint Security**: 78/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1045 tokens (~69/item across 15 items; 15 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 3/100
  - Stability observed for 1 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**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-reclaimai https://reclaimai.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-reclaimai]
url = "https://reclaimai.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-reclaimai": {
      "type": "remote",
      "url": "https://reclaimai.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-reclaimai --url https://reclaimai.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-reclaimai:
    url: "https://reclaimai.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-reclaimai": {
      "type": "http",
      "url": "https://reclaimai.usefulapi.io/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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 70, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-02 (score 70, +52)

- [security improvement] Authorization: unverified → pass
- [security improvement] Transport: fail → pass
- [security] First check of Authorization: partial
- [functional regression] MCP protocol: unverified → fail
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: excellent
- [functional] First check of Schema quality: pass
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: fail

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

First indexed and scored.

## MCP tools (15)

### `reclaim_get_current_user` (~28 tokens)

Get current user

Get the authenticated Reclaim user's profile. Reclaim REST: GET /api/users/me.

### `reclaim_list_tasks` (~24 tokens)

List tasks

List the authenticated user's tasks. Reclaim REST: GET /api/tasks.

### `reclaim_get_task` (~37 tokens)

Get task

Get a single task by id. Reclaim REST: GET /api/tasks/{id}.

Input parameters:

- `id` (string, required): The task id.

### `reclaim_list_habits` (~33 tokens)

List habits

List the authenticated user's daily habits. Reclaim REST: GET /api/assist/habits/daily.

### `reclaim_get_habit` (~45 tokens)

Get habit

Get a single daily habit by id. Reclaim REST: GET /api/assist/habits/daily/{id}.

Input parameters:

- `id` (string, required): The habit id.

### `reclaim_list_events` (~73 tokens)

List events

List calendar events. Reclaim REST: GET /api/events. Optional start/end window.

Input parameters:

- `end` (string): End of the calendar events window (ISO date/datetime string → query param end).
- `start` (string): Start of the calendar events window (ISO date/datetime string → query param start).

### `reclaim_create_task` (~221 tokens)

Create task

Create a new task. Reclaim schedules it into your calendar automatically. Reclaim REST: POST /api/tasks.

Input parameters:

- `due` (string): Due date/time (ISO-8601 Zulu datetime, e.g. 2026-07-20T17:00:00.000Z).
- `eventCategory` (string): Task category — WORK or PERSONAL (default WORK).
- `maxChunkSize` (integer): Maximum contiguous block, in 15-minute chunks.
- `minChunkSize` (integer): Minimum contiguous block, in 15-minute chunks.
- `notes` (string): Freeform notes / description for the task.
- `priority` (string): Task priority — P1 (highest) … P4 (lowest).
- `snoozeUntil` (string): Do not schedule before this time (ISO-8601 Zulu datetime).
- `timeChunksRequired` (integer): Total scheduled time as a number of 15-minute chunks, e.g. 4 = 1 hour.
- `title` (string, required): The task title.

### `reclaim_update_task` (~214 tokens)

Update task

Update fields on an existing task. Only provided fields are changed. Reclaim REST: PATCH /api/tasks/{id}.

Input parameters:

- `due` (string): Due date/time (ISO-8601 Zulu datetime).
- `eventCategory` (string): Task category — WORK or PERSONAL (default WORK).
- `id` (string, required): The task id to update.
- `maxChunkSize` (integer): Maximum contiguous block, in 15-minute chunks.
- `minChunkSize` (integer): Minimum contiguous block, in 15-minute chunks.
- `notes` (string): Freeform notes / description for the task.
- `priority` (string): Task priority — P1 (highest) … P4 (lowest).
- `snoozeUntil` (string): Do not schedule before this time (ISO-8601 Zulu datetime).
- `timeChunksRequired` (integer): Total scheduled time as a number of 15-minute chunks, e.g. 4 = 1 hour.
- `title` (string): The task title.

### `reclaim_mark_task_complete` (~47 tokens)

Mark task complete

Mark a task as done in the planner. Reclaim REST: POST /api/planner/done/task/{id}.

Input parameters:

- `id` (string, required): The task id to mark complete.

### `reclaim_mark_task_incomplete` (~52 tokens)

Mark task incomplete

Reopen a completed task (unarchive) in the planner. Reclaim REST: POST /api/planner/unarchive/task/{id}.

Input parameters:

- `id` (string, required): The task id to mark incomplete.

### `reclaim_start_task` (~44 tokens)

Start task

Start time-tracking on a task now. Reclaim REST: POST /api/planner/start/task/{id}.

Input parameters:

- `id` (string, required): The task id to start.

### `reclaim_stop_task` (~44 tokens)

Stop task

Stop time-tracking on a task. Reclaim REST: POST /api/planner/stop/task/{id}.

Input parameters:

- `id` (string, required): The task id to stop.

### `reclaim_add_time` (~61 tokens)

Add time to task

Add scheduled time to a task. Reclaim REST: POST /api/planner/add-time/task/{id}.

Input parameters:

- `id` (string, required): The task id.
- `minutes` (integer, required): Minutes of time to add to the task (→ query param minutes).

### `reclaim_log_work` (~84 tokens)

Log work on task

Log completed work time against a task. Reclaim REST: POST /api/planner/log-work/task/{id}.

Input parameters:

- `end` (string): End time of the logged work (ISO-8601 Zulu datetime → query param end).
- `id` (string, required): The task id.
- `minutes` (integer, required): Minutes of work to log (→ query param minutes).

### `reclaim_delete_task` (~38 tokens)

Delete task

Permanently delete a task. Reclaim REST: DELETE /api/tasks/{id}.

Input parameters:

- `id` (string, required): The task id to delete.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/io-usefulapi-reclaimai/reclaimai#diagnostics

## Score history

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

## Links

- Remote endpoint: https://reclaimai.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-reclaimai/reclaimai/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-reclaimai/reclaimai/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-reclaimai/reclaimai
