# SecHelix (pypi · sechelix)

Evidence-first security review of authorized repositories. Read-only, root-confined, no shell.

- Trust score: 50/100 (low)
- Change this week: +5
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- pypi · `sechelix`: 50/100 (this document), [markdown](https://verifymcp.io/servers/omarmohelal-sechelix/sechelix.md), [page](https://verifymcp.io/servers/omarmohelal-sechelix/sechelix)

## Channel facts

- Registry: `pypi`
- Package: `sechelix`
- Version: `0.3.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-09-20.

- **Supply Chain Security**: 50/100
  - Malware scan not yet available for this package.
  - No known CVEs affecting this package version or its production dependencies.
  - Runs hatchling.build at install time, a recognised native-build step with no shell scripting around it.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 35/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: the license (Apache Software License) isn't a recognized OSI-approved license.
  - Actively maintained (last published 10 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 61/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 226 tokens (~32/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 37/100
  - Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 7 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 7 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

## Install

### How do I install the SecHelix MCP server?

SecHelix runs locally as a PyPI package, launched with uvx sechelix. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add omarmohelal-sechelix -- uvx sechelix
```

### Cursor

```json
{
  "mcpServers": {
    "omarmohelal-sechelix": {
      "command": "uvx",
      "args": [
        "sechelix"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "omarmohelal-sechelix": {
      "command": "uvx",
      "args": [
        "sechelix"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add omarmohelal-sechelix -- uvx sechelix
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "omarmohelal-sechelix": {
      "type": "local",
      "command": [
        "uvx",
        "sechelix"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add omarmohelal-sechelix --command uvx --arg sechelix
```

### Hermes

```yaml
mcp_servers:
  omarmohelal-sechelix:
    command: "uvx"
    args: ["sechelix"]
```

### Netclaw

```json
{
  "McpServers": {
    "omarmohelal-sechelix": {
      "Transport": "stdio",
      "Command": "uvx",
      "Arguments": [
        "sechelix"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add omarmohelal-sechelix -t stdio -c uvx -a sechelix
```

### Other

```json
{
  "mcpServers": {
    "omarmohelal-sechelix": {
      "command": "uvx",
      "args": [
        "sechelix"
      ]
    }
  }
}
```

## 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-09-19 (score 50, +1)

No change was recorded against any check on this day. Stability & Change Management went from 30 to 33. That category is still filling its 30-day observation window: 9 days of observed history at the previous scan, 10 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-17 (score 49, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-10 (score 45, −15)

- [security regression] Malware scan: pass → unverified
- [functional improvement] Security disclosure: unverified → pass

### 2026-09-09 (score 60)

First indexed and scored.

## MCP tools (7)

### `sechelix_audit` (~36 tokens)

Run a STATIC SecHelix audit over a directory.

Input parameters:

- `depth` (string)
- `path` (string)

### `sechelix_coverage` (~25 tokens)

What previous runs did NOT examine.

Input parameters:

- `path` (string)

### `sechelix_doctor` (~20 tokens)

Report which SecHelix components are available.

### `sechelix_findings` (~39 tokens)

Findings for a run, with why an empty list is empty.

Input parameters:

- `path` (string)
- `run_id` (string, required)

### `sechelix_report` (~45 tokens)

Render a run as markdown, json, sarif or html.

Input parameters:

- `format` (string)
- `path` (string)
- `run_id` (string, required)

### `sechelix_run_status` (~35 tokens)

Node statuses and integrity for a recorded run.

Input parameters:

- `path` (string)
- `run_id` (string, required)

### `sechelix_verify` (~26 tokens)

Build safe verification plans for a finding.

Input parameters:

- `finding_id` (string, required)

## Diagnostics

Captured diagnostic sections: Provenance, Install scripts, Dependencies. The full working is on the page: https://verifymcp.io/servers/omarmohelal-sechelix/sechelix#diagnostics

## Score history

- 2026-09-20: 50
- 2026-09-19: 50
- 2026-09-18: 49
- 2026-09-17: 49
- 2026-09-16: 45
- 2026-09-15: 45
- 2026-09-14: 45
- 2026-09-13: 45
- 2026-09-12: 45
- 2026-09-11: 45
- 2026-09-10: 45
- 2026-09-09: 60

## Common questions

### What is the SecHelix MCP server?

SecHelix is an MCP server listed in the public MCP registry as io.github.omarmohelal/sechelix. Evidence-first security review of authorized repositories. Read-only, root-confined, no shell. This page covers its PyPI package (sechelix).

### Is the SecHelix MCP server safe to use?

SecHelix scores 50 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the SecHelix MCP server expose?

SecHelix exposes 7 tools: sechelix_audit, sechelix_coverage, sechelix_doctor, sechelix_findings, sechelix_report, and 2 more. Their descriptions and schemas cost roughly 226 tokens of context every time the server is loaded.

### Is the SecHelix MCP server still maintained?

SecHelix is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- PyPI project: https://pypi.org/project/sechelix/
- Socket report: https://socket.dev/pypi/package/sechelix
- Repository: https://github.com/omarmohelal/SecHelix
- Website: https://sechelix.com/
- Changelog RSS feed: https://verifymcp.io/servers/omarmohelal-sechelix/sechelix.xml
- Changelog JSON feed: https://verifymcp.io/servers/omarmohelal-sechelix/sechelix.json
- HTML version of this page: https://verifymcp.io/servers/omarmohelal-sechelix/sechelix
