zephex
CLIGet StartedPricingMCP ToolsCommunityGuidesDocs
←BackSign in
CLIGet StartedPricingMCP ToolsCommunityGuidesDocs
Get started freeSign in
DocsAPIToolsEditorsChangelogHelp

GET STARTED

WelcomeQuickstartSetup videoMCP Q&A (learn)BlogWhat is MCP?Who is Zephex for?Plans & PricingZ-GASAB benchmarkBenchmark chart (live)Changelog

CLI

Install & upgradeStartAll install methodsnpx zephex setupCLI without an agentFirst run (init)Login, logout, keysCommand referenceTerminal Mode 2Slash commandsCLI in Docker

INSTALLATION

Connect MCPAll editors (one command)Crush, Hermes, ChatGPT, KiloVS Code Marketplace extensionOAuth & HTTP setupSetup walkthroughHTTP vs stdioWeb Terminal (dashboard)Web Terminal toolsTerminal tools (complete)Test PulseTest Pulse commandsdeep (Project Dossier)Project MemorySupply PulseSupply Pulse commandsinstall (GitHub / npm files)install file commandsCommand CompassHTTP API

API & KEYS

API Key ManagementKey Naming & FormatAuthenticationKey Dashboard

CONFIGURATION

Universal RequirementsSupported EditorsHow It WorksArchitectureCLAUDE.md TemplateAGENTS.md Template

EDITORS28 guides

Supported EditorsVS CodeVS Code extension (Marketplace)Claude CodeCursorWindsurfJetBrains

PLATFORM

macOSWindowsLinux

TOOLS10 tools

Capabilities OverviewTools OverviewTool FilteringTool Workflowsget_project_contextread_codefind_codecheck_packageexplain_architectureZephex_dev_infocheck_testaudit_headerskeep_thinkingproject_memory

GUIDES

Best PracticesToken EfficiencyUse CasesZephex vs Local MCPZephex vs Context7Zephex vs GitHub MCPZephex vs SmitheryMCP EcosystemMarkdown Access

SUPPORT

Help CenterMCP troubleshootingTeam rolloutFAQConnection IssuesRate LimitsDowntime & ErrorsBillingTier GuidePro & Max guideUsage LimitsUsage Analytics

LEGAL

System StatusTerms (summary)Privacy (summary)Data UseSecurityAuthenticationSecurityData HandlingPrivacy PolicyTerms of Service

Quick Links

API Reference

Complete API documentation

Troubleshooting

Common issues and solutions

Community

Join our Discord community

Plugins

Editor and CLI integrations

Pricing

Free, Pro, and Max plans

Enter
Zephex_devzephex-devzephexzephexhello@zephex.dev
© 2026 Zephex. All systems operational.

Platform

Windows

Use this page when your editor runs directly on Windows and you need the right file paths, PowerShell verification steps, and Windows-specific gotchas before opening the editor guide.

HOSTED ENDPOINT

One MCP URL on every machine

Zephex always uses https://zephex.dev/mcp with the same Bearer header. The operating system only changes file paths, restart flow, and shell commands.

WHAT CHANGES

Path conventions and app behavior

Windows swaps Unix home shortcuts for %USERPROFILE% and backslash paths. If the editor is actually running in WSL, follow the Linux guide for the WSL environment instead of the Windows host.

PLATFORM SUMMARY

On Windows, the endpoint and Bearer auth are identical to every other platform. What usually breaks the setup is saving JSON into the wrong directory, mixing Windows host paths with WSL paths, or accidentally creating files like mcp.json.txt from Explorer.

CURL INSTALLER

Install the terminal CLI (Windows)

This one-liner is the Mode 2 terminal installer — the same zephex shell you type / in. It is not the editor MCP wizard on the homepage (npx -p zephex mcpcli setup). Same account and API key later; different first command.

shell
irm https://zephex.dev/install.ps1 | iex

What it does

  • Installs into ~/.zephex (or %USERPROFILE%\.zephex on Windows) — not into your project.
  • If your system Node is missing or older than 22.5, it downloads a private Node 22 runtime (~50 MB compressed, once) under ~/.zephex/node.
  • Downloads the zephex npm tarball only (~3 MB today, ~13 MB unpacked) into ~/.zephex/npm-global and links zephex + mcpcli. It does not run npm install -g — that would also pull unused server libraries (~260 MB).
  • Starts zephex init --terminal so you can sign in in the browser. It does not write Cursor / Claude / VS Code MCP config. Editor wiring is zephex connect --cursor (or npx -y zephex@latest setup --cursor).

By operating system

Windows — do not pipe the bash installer in cmd.exe. Use PowerShell:

shell
irm https://zephex.dev/install.ps1 | iex

WSL or Git Bash: use the macOS/Linux curl line inside that Linux environment. Mixing C:\Users\…\.zephex with /home/you/.zephex is the usual break.

Cloud shells, phones, other OS

  • Google Cloud Shell, GitHub Codespaces, Railway / Render shells — use the same curl line. Those boxes often ship Node 18 or 20. The installer notices and downloads a private Node 22 under ~/.zephex/node instead of failing. Do not use npx zephex setup there unless node -v is already 22.5+.
  • Android (Termux) — curl + bash work. Same installer. Hosted commands still need HTTPS out to zephex.dev.
  • iPhone / iPad — there is no native zephex binary. Use the web terminal in Safari, or SSH into a Mac/Linux box that already has the CLI.
  • Windows ARM (Surface, Snapdragon) — PowerShell installer downloads the win-arm64 Node build. WSL on ARM uses the Linux arm64 curl line.

What the CLI talks to

  • Install download — Vercel serves install.sh / install.ps1. The CLI itself comes from the npm registry, not from Railway.
  • Sign-in — browser or QR hits zephex.dev/cli/auth (Vercel). Your user_id and key name are written to Supabase. The API key is stored only in ~/.zephex/credentials.json (mode 0600).
  • Tool commands (/overview, /architecture, …) go to the hosted MCP proxy on Railway (https://zephex.dev/mcp is the public URL). Credits and tool names are stored per user_id in usage_events.
  • Sentry — Railway captures hosted tool / API errors (tagged with CLI version). The local zephex process does not send your repo to Sentry.

After install — first commands

shell
source ~/.zephex/env.shcd your-appzephex# type /overview   or   /help

Hosted tools need a live API key (dashboard keys or the browser sign-in the installer opens). /help and /learn work without a key. /frontend /auth /database /overview do not.

Upgrade

The curl script always installs npm zephex@latest (unless you pin ZEPHEX_VERSION). Re-run it, or:

shell
zephex update # or re-run the installer (installs npm zephex@latest into ~/.zephex)curl -fsSL https://zephex.dev/cli/install.sh | bash # pin a versionZEPHEX_VERSION=2.5.13 curl -fsSL https://zephex.dev/cli/install.sh | bash

Check what you have: zephex info or zephex --version. If which zephex points at an old global npm (not ~/.zephex/bin/zephex), source ~/.zephex/env.sh or reopen the terminal.

This vs the homepage npx line

  • curl -fsSL https://zephex.dev/cli/install.sh | bash — install the terminal (Mode 2). No Node required on the machine first.
  • npx -p zephex mcpcli setup — editor MCP wizard (Mode 1). Needs Node already. Writes Cursor / Claude config.
  • You can use both with one API key. Install the CLI first, then zephex connect --cursor when you want the editor.

Uninstall

shell
zephex uninstall           # PATH + credentialszephex uninstall --full    # delete entire ~/.zephex

If something looks stuck

  • command not found: zephex — source ~/.zephex/env.sh, then open a new tab.
  • Piped curl into bash: the installer cannot keep PATH in that parent shell. That is why it prints the source line.
  • Only run the script from zephex.dev— never a random gist.
  • Offline or corporate TLS intercept: the script needs HTTPS to zephex.dev (npm package) and, if Node is missing, nodejs.org.

More paths: all install methods · macOS · Linux · Windows · terminal CLI

PREREQUISITES

REQUIRED

  1. A Zephex API key from Dashboard → API Keys.
  2. An editor running on Windows itself, not inside WSL, SSH, or a dev container.
  3. PowerShell access with outbound HTTPS access to zephex.dev on port 443.

RULE OF THUMB

If the editor runs on this operating system, keep the config on this operating system too. If the editor actually runs in WSL, SSH, or a container, follow the guide for that runtime instead of the host desktop.

CONFIG PATHS

Use Windows paths for editors running on Windows. Do not mix these with WSL or remote Linux paths unless the editor process is also running there.

EditorLocationScopeNotes
Cursor.cursor\mcp.jsonProjectKeep the file in the repo root that Cursor opened on Windows.
VS Code.vscode\mcp.jsonProjectThe workspace root matters more than the drive letter.
Claude Code%USERPROFILE%\.claude.jsonUserThis is the Windows user profile, not a WSL home directory.
Windsurf%USERPROFILE%\.codeium\windsurf\mcp_config.jsonUserCreate the nested directories before saving the config file.
JetBrainsSettings → AI Assistant → MCP ServersApp UIJetBrains keeps MCP setup in the IDE settings UI.
TERMINAL CHECK

Run this in PowerShell on the same Windows machine as the editor. It verifies the hosted endpoint before you spend time on UI debugging.

DEBUG RULE

If this request succeeds but the editor still shows 0 tools, your API key and network are fine. The remaining problem is the editor config location, JSON shape, or restart flow.

shell
New-Item -ItemType Directory -Force "$env:USERPROFILE\.codeium\windsurf" | Out-Null $body = @{  jsonrpc = "2.0"  id = 1  method = "tools/list"  params = @{}} | ConvertTo-Json -Compress Invoke-RestMethod -Method Post "https://zephex.dev/mcp" `  -Headers @{    Authorization = "Bearer YOUR_API_KEY"    "Content-Type" = "application/json"  } `  -Body $body
VERIFY

After the PowerShell request succeeds, verify the editor with a true reload or full restart.

  1. Save the config file or JetBrains MCP server entry.
  2. Reload or restart the editor fully. VS Code can use Developer: Reload Window, while Cursor, Claude Code, and Windsurf should be fully reopened.
  3. Open a fresh session and confirm zephex appears as connected with 10 tools.
EDITOR GUIDES

These pages cover the exact JSON shape, restart flow, and UI verification steps for each editor after you have picked the right file location for this operating system.

EditorUse This WhenGuide
CursorBest when you want the cleanest repo-local JSON file for Windows projects.Open guide →
VS CodeUse this if you want VS Code to prompt for the API key instead of hardcoding it.Open guide →
Claude CodeUse this when the server should be available across repos from one user config file.Open guide →
WindsurfUse this for the exact global JSON shape under the Codeium directory.Open guide →
JetBrainsUse this for AI Assistant MCP settings in IntelliJ-based IDEs.Open guide →
COMMON ISSUES

Saved the file as mcp.json.txt

Explorer may hide known extensions. Turn on file extensions or confirm the final filename exactly matches mcp.json or mcp_config.json with no extra .txt suffix.

Mixed Windows and WSL environments

If the editor is launched from WSL or a remote Linux environment, Windows profile paths will not be used. Follow the Linux guide for the environment that actually runs the editor process.

Backslashes or quotes were pasted incorrectly

Keep JSON keys and strings in standard double quotes and do not add comments. For PowerShell verification, keep the backticks at the line ends exactly as shown.

Corporate proxy or TLS inspection blocks the request

If PowerShell cannot reach https://zephex.dev/mcp, resolve the network policy first. The editor cannot work until Windows itself can complete the HTTPS request.

Windows ARM (Surface, Snapdragon) downloaded the wrong Node

Use irm https://zephex.dev/install.ps1 | iex. The installer now picks win-arm64. WSL on ARM should use the Linux curl line inside WSL, not PowerShell.

If the platform setup still does not connect, return to Quickstart or check Connection Issues.