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.

Installation

OAuth & HTTP MCP setup

Some editors connect to Zephex over HTTPS with Bearer auth instead of local stdio. This page covers the shared pattern — then link to your editor-specific guide.

WHEN TO USE HTTP

Use stdio (npx -y zephex) when your editor spawns a local process — Cursor, Claude Code, Windsurf, JetBrains. Use HTTP + Bearer token when the editor expects a remote URL (VS Code, Claude.ai, many OAuth flows). Same API key, same 10 tools.

HTTP CONFIG TEMPLATE

Replace YOUR_API_KEY with a key from Dashboard → API Keys. Endpoint is always https://zephex.dev/mcp.

json
{  "servers": {    "zephex": {      "url": "https://zephex.dev/mcp",      "headers": {        "Authorization": "Bearer YOUR_API_KEY"      }    }  }}
OAUTH-CAPABLE EDITORS

VS Code

Native HTTP MCP in .vscode/mcp.json

Claude.ai (web)

Custom connector + OAuth

ChatGPT

Developer Mode → Create App

Grok

grok.com/connectors → Custom

OpenCode

OAuth in opencode.json

Zed

context_servers + HTTP

Gemini CLI

settings.json transport

Cline

MCP settings with remote URL

Kiro IDE / CLI

.kiro/settings/mcp.json

VERIFY
  1. Call tools/list — you should see 10 Zephex tools.
  2. On 401, rotate the key and confirm the header is Bearer mcp_....
  3. If the client supports OAuth discovery, Zephex exposes protected-resource metadata at /.well-known/oauth-protected-resource.

Stuck? See MCP troubleshooting.