# zephex

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add tangithub2/zephex

# Browse available tools
npx -y smithery tool list tangithub2/zephex

# Get full schema for a tool
npx -y smithery tool get tangithub2/zephex get_project_context

# Call a tool
npx -y smithery tool call tangithub2/zephex get_project_context '{}'
```

## Direct MCP Connection

Endpoint: `https://zephex.run.tools`

**Required config:**
- `X-Api-Key` (header) — filled

## Tools (10)

- `get_project_context` — Analyze a project directory to understand its tech stack, architecture, key files, and dependencies.
- `scope_task` — Break down a complex development task into well-scoped subtasks with file paths, dependencies, and effort estimates.
- `read_code` — Read source code from a file with optional line range selection and AST-aware symbol extraction.
- `find_code` — Search for text patterns across a codebase using ripgrep. Supports regex, file type filters, and context lines.
- `explain_architecture` — Analyze a project to produce an end-to-end architectural overview: data flow, components, entry points, and design patt…
- `Zephex_dev_info` — Inspect URLs to extract content, metadata, and structure. Handles JavaScript-rendered pages, PDFs, and docs.
- `audit_headers` — Makes a raw HTTP/TLS connection to inspect security headers, SSL certificates, and redirect chains.
- `check_package` — Real-time npm package verification: check if package exists, compare versions, get security status.
- `audit_package` — Deep package intelligence: breaking changes, CVEs, migration steps, code examples.
- `thinking` — Structured reasoning tool for complex debugging and multi-step problem solving.

```bash
# Get full input/output schema for a tool
npx -y smithery tool get tangithub2/zephex <tool-name>
```
