# io.github.khalomsky/syke (npm · @syke1/mcp-server)

AI code impact analysis — dependency graphs, cascade detection, and build gates for AI agents

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

## Components

- npm · `@syke1/mcp-server`: 63/100 (this document), [markdown](https://verifymcp.io/servers/khalomsky-syke/syke1-mcp-server.md), [page](https://verifymcp.io/servers/khalomsky-syke/syke1-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@syke1/mcp-server`
- Version: `1.5.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 (97 of 98), 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 (97 of 98), 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 155 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 49/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 460 tokens (~57/item across 8 items; 8 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**: 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**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add khalomsky-syke -- npx -y @syke1/mcp-server
```

### Codex

```bash
codex mcp add khalomsky-syke -- npx -y @syke1/mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add khalomsky-syke --command npx --arg -y --arg @syke1/mcp-server
```

### Hermes

```yaml
mcp_servers:
  khalomsky-syke:
    command: "npx"
    args: ["-y", "@syke1/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "khalomsky-syke": {
      "command": "npx",
      "args": [
        "-y",
        "@syke1/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 63, +42)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-02 (score 21, −9)

- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Capabilities: pass → unverified
- [functional improvement] Dependency health: unverified → partial

### 2026-07-31 (score 30, −25)

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

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

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 73, +48)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional regression] Security disclosure: unverified → fail
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fair
- [functional] First check of Schema quality: fail
- [functional] Licence: MIT

### 2026-07-26 (score 25)

First indexed and scored.

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

## MCP tools (8)

### `gate_build` (~81 tokens)

MANDATORY: Call this BEFORE any build, deploy, or test command. Returns PASS, WARN, or FAIL verdict with detailed reasons. If FAIL, do NOT proceed with build — fix issues first. Always call this as the final check before any compilation or deployment.

Input parameters:

- `files` (array): Optional list of modified files (absolute or relative to source directory)

### `analyze_impact` (~62 tokens)

[PRO] Analyze which files are impacted when a given file is modified. Returns direct and transitive dependents with risk level.

Input parameters:

- `file` (string, required): Source file path (absolute or relative to source directory). Example: "features/auth/data/auth_repository.dart"

### `check_safe` (~48 tokens)

Quick safety check for modifying a file. Returns a one-line verdict: HIGH/MEDIUM/LOW/NONE risk with impacted file count.

Input parameters:

- `file` (string, required): Source file path to check

### `get_dependencies` (~31 tokens)

List the internal files that a given file imports (forward dependencies).

Input parameters:

- `file` (string, required): Source file path

### `get_hub_files` (~54 tokens)

[PRO] Rank files by how many other files depend on them (PageRank). High-hub files are risky to modify.

Input parameters:

- `top_n` (number): Number of top files to return (default 10)

### `refresh_graph` (~30 tokens)

[PRO] Re-scan all source files and rebuild the dependency graph. Use after adding/removing files.

### `ai_analyze` (~68 tokens)

[PRO] Use AI (Gemini/OpenAI/Claude) to perform semantic analysis on a file. Reads the file's source code and its dependents to explain what might break when modified and how to safely make changes.

Input parameters:

- `file` (string, required): Source file path to analyze with AI

### `check_warnings` (~86 tokens)

[PRO] Check for unresolved warnings from SYKE's real-time monitoring. Returns warnings about file changes that may have broken dependents. Use this AFTER modifying files to see if SYKE caught any issues you may have missed. Pass acknowledge=true to clear warnings after reading them.

Input parameters:

- `acknowledge` (boolean): If true, mark all warnings as acknowledged after returning them (default: false)

## Diagnostics

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

## Score history

- 2026-08-03: 63
- 2026-08-02: 21
- 2026-08-01: 30
- 2026-07-31: 30
- 2026-07-30: 55
- 2026-07-28: 73
- 2026-07-27: 73
- 2026-07-26: 25

## Links

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