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

INSTALLATION

Web Terminal tools (plain English)Terminal tools (complete)Connect MCPVS Code Marketplace extensionCLI (no AI agent)CLI init (first run)CLI account & logoutNPX (Recommended)Test Pulse (check test)Test Pulse commandsProject MemorySupply Pulse (supply)Supply Pulse commandsTerminal CLI referenceSlash commands (37 palette)Web Terminal (dashboard)Command CompassCLI commandsCLI in DockerCLI: All editors (one command)CLI: Crush, Hermes, ChatGPT, KiloOAuth & HTTP setupInstall overviewHTTP APISetup WalkthroughHTTP vs stdio

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.

Support

Downtime, Errors & Status

What happens when something goes wrong — error codes, what your editor shows, retry behavior, and how to check service status.

MCP ERROR CODES
CodeMeaningWhat to do
-32001Authentication failedCheck your API key is correct and not revoked
-32002Burst rate limit exceededWait a few seconds and retry (see Retry-After header)
-32003Monthly usage limit exceededUpgrade plan, buy a top-up, or wait for monthly reset
-32004Per-key monthly cap reachedIncrease the key's cap or use a different key
-32005Tool not allowed for this keyEdit key scopes to include the tool, or use a full-access key
-32600Invalid request formatCheck your MCP client is sending valid JSON-RPC 2.0
-32601Tool not foundCheck the tool name — use tools/list to see available tools
-32603Internal server errorRetry after a few seconds. If persistent, check status page
json
{  "jsonrpc": "2.0",  "error": {    "code": -32001,    "message": "Authentication failed: invalid or revoked API key"  }}
WHAT YOUR EDITOR SHOWS DURING ISSUES
ScenarioWhat you see in your editor
Zephex is completely downTool calls time out after 30-60s. Editor shows 'tool call failed' or 'connection error'. Other editor features (autocomplete, chat) still work.
Your key is revoked/expiredImmediate error: 'Authentication failed'. Tools appear connected but every call fails.
Monthly limit reachedError with reset date. tools/list still works. Editor shows tools as available but calls return the limit error.
Burst rate limit hitTemporary error with Retry-After. Usually resolves in seconds. Happens if you trigger many rapid tool calls.
Network issue (your side)Connection timeout. Check your internet. The MCP endpoint requires HTTPS.
RETRY BEHAVIOR

Most MCP clients handle retries automatically. If yours does not:

  • -32002 (burst limit) — retry after the value in the Retry-After header (usually 1-5 seconds).
  • -32603 (internal error) — retry with exponential backoff: 1s, 2s, 4s, max 3 attempts.
  • -32001 (auth failed) — do not retry. Fix your API key.
  • -32003 (monthly limit) — do not retry. Upgrade, buy top-up, or wait for reset.
  • Connection timeout — retry once after 5 seconds. If it fails again, the service may be experiencing an outage.
UPTIME & STATUS
  • Zephex targets 99.9% uptime for the MCP proxy endpoint.
  • Planned maintenance is announced at least 24 hours in advance via email to users with billing alerts enabled.
  • The proxy uses health checks and automatic container replacement — if a container becomes unhealthy, it is replaced within 60 seconds.
  • Deployments use canary releases: new versions serve 5% of traffic first, then roll out fully after a 3-minute bake period with no errors.
WHAT IS NOT AFFECTED BY ZEPHEX DOWNTIME

If Zephex is down, the following still work normally:

  • Your editor (Cursor, VS Code, etc.) — all non-MCP features continue.
  • AI chat and autocomplete — these use your editor's own AI provider, not Zephex.
  • Local MCP servers — if you have other MCP servers configured locally, they are unaffected.
  • Your code and files — Zephex never modifies your local files.

Zephex is an optional enhancement. Your development workflow continues without it — you just lose access to the 10 hosted tools until service is restored.

INCIDENT COMMUNICATION
  • Major outages are communicated via email to all users with security alerts enabled.
  • Post-incident reports are published for outages exceeding 15 minutes.
  • If you experience issues not reflected on the status page, email support@zephex.dev.
QUICK SELF-DIAGNOSIS
  1. Check your key — go to Dashboard → API Keys. Is the key active (not revoked/expired)?
  2. Check your usage — go to Dashboard → Usage. Have you hit your monthly limit?
  3. Check your config — is the endpoint URL correct? (https://mcp.zephex.dev/sse)
  4. Check your network — can you reach https://zephex.dev in a browser?
  5. Try a different key — if one key fails, try another to isolate the issue.
  6. Restart your editor — some MCP clients cache connection state. A restart forces a fresh handshake.
STILL STUCK?

Email support@zephex.dev with your key prefix (not the full key), the error message, and your editor name/version.