# io.github.aissablk1/mcp-roadmapsh (npm · mcp-roadmapsh)

MCP server for roadmap.sh: roadmaps, best practices, interview questions, projects & progress

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

## Components

- npm · `mcp-roadmapsh`: 67/100 (this document), [markdown](https://verifymcp.io/servers/aissablk1-mcp-roadmapsh/mcp-roadmapsh.md), [page](https://verifymcp.io/servers/aissablk1-mcp-roadmapsh/mcp-roadmapsh)

## Channel facts

- Registry: `npm`
- Package: `mcp-roadmapsh`
- Version: `0.2.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**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), 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 (95 of 99), 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 (MIT).
  - Actively maintained (last published 59 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 663 tokens (~41/item across 16 items; 16 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**: 89/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 67% 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 aissablk1-mcp-roadmapsh -- npx -y mcp-roadmapsh
```

### Codex

```bash
codex mcp add aissablk1-mcp-roadmapsh -- npx -y mcp-roadmapsh
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add aissablk1-mcp-roadmapsh --command npx --arg -y --arg mcp-roadmapsh
```

### Hermes

```yaml
mcp_servers:
  aissablk1-mcp-roadmapsh:
    command: "npx"
    args: ["-y", "mcp-roadmapsh"]
```

### Other

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

## 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 67, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 63, +43)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: 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).
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 20, −7)

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

### 2026-07-30 (score 27, −18)

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (16)

### `roadmap_diagnose` (~25 tokens)

Check connectivity to roadmap.sh and GitHub, and report cache/state status.

### `roadmap_list` (~21 tokens)

List all available roadmap slugs (role-based and skill-based).

### `roadmap_get` (~58 tokens)

Get a roadmap by slug. format=outline returns a readable topic plan with node ids; format=raw returns the full graph JSON.

Input parameters:

- `format` (string)
- `slug` (string, required): roadmap.sh slug, e.g. 'frontend'

### `roadmap_topic` (~80 tokens)

Get the markdown content and curated links for one topic of a roadmap (by nodeId from the outline, or by query).

Input parameters:

- `nodeId` (string): Exact node id from the outline
- `query` (string): Topic title substring, used if nodeId is unknown
- `slug` (string, required): roadmap.sh slug, e.g. 'frontend'

### `roadmap_search` (~49 tokens)

Search roadmap.sh slugs by keyword within a scope (roadmaps, best-practices, question-groups, projects, videos).

Input parameters:

- `query` (string, required)
- `scope` (string)

### `roadmap_export` (~111 tokens)

Export an entire roadmap as a single markdown document (all topics' content concatenated). includeContent=false returns structure only; maxTopics caps the count.

Input parameters:

- `format` (string): Output format: markdown (default) or plain text for LLM ingestion
- `includeContent` (boolean): Fetch each topic's markdown; false returns structure only
- `maxTopics` (integer): Cap the number of topics fetched (default: all)
- `slug` (string, required): roadmap.sh slug, e.g. 'frontend'

### `best_practices_list` (~19 tokens)

List all best-practice slugs.

### `best_practices_get` (~48 tokens)

Get a best-practice guide by slug (outline or raw graph).

Input parameters:

- `format` (string)
- `slug` (string, required): roadmap.sh slug, e.g. 'frontend'

### `questions_list` (~16 tokens)

List all interview question-group slugs.

### `questions_get` (~35 tokens)

Get the interview questions markdown for a question-group slug.

Input parameters:

- `slug` (string, required): roadmap.sh slug, e.g. 'frontend'

### `projects_list` (~15 tokens)

List all practice-project slugs.

### `project_get` (~35 tokens)

Get the markdown brief for one practice project by slug.

Input parameters:

- `slug` (string, required): roadmap.sh slug, e.g. 'frontend'

### `videos_list` (~15 tokens)

List all video resource slugs.

### `progress_mark` (~61 tokens)

Mark a roadmap topic as learning, done, or skip (stored locally).

Input parameters:

- `label` (string)
- `nodeId` (string, required)
- `roadmap` (string, required): roadmap.sh slug, e.g. 'frontend'
- `status` (string, required)

### `progress_status` (~36 tokens)

Get local progress for a roadmap: counts and completion percent.

Input parameters:

- `roadmap` (string, required): roadmap.sh slug, e.g. 'frontend'

### `progress_next` (~39 tokens)

Recommend the next unlearned topic for a roadmap based on local progress.

Input parameters:

- `roadmap` (string, required): roadmap.sh slug, e.g. 'frontend'

## Diagnostics

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

## Score history

- 2026-08-03: 67
- 2026-08-02: 63
- 2026-08-01: 20
- 2026-07-31: 20
- 2026-07-30: 27
- 2026-07-28: 45
- 2026-07-27: 45

## Links

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