zephex
⌘K
Get StartedPricingMCP ToolsDocs
←Back×Sign in
Get StartedPricingMCP ToolsDocs

Documentation

Start with the endpoint and API key flow, then branch into editor setup or tool reference.

GET STARTED

What is MCP?IntroductionQuickstartAPI ReferenceUniversal RequirementsZephex vs Local MCPBest PracticesToken EfficiencyCLAUDE.md TemplateAGENTS.md TemplateMCP EcosystemMarkdown Access

EDITORS

OpenCodeOAuthVS CodeClaude CodeCursorWindsurfJetBrainsKiro CLIOAuthZedOAuthGemini CLIOAuthClineOAuthGooseCodex CLIOAuthFactory AIOAuth

OPERATING SYSTEMS

macOSWindowsLinux

TOOLS

get_project_contextread_codefind_codecheck_packageaudit_packageexplain_architectureZephex_dev_infoscope_taskaudit_headersthinking

SUPPORT

PlansPro & Max GuideUsage & AnalyticsConnection IssuesRate LimitsBillingSecurityFAQChangelog

Claude Code

Claude Code should use the stdio MCP config in `~/.claude.json`, or the `claude mcp add` CLI command that writes the same entry for you.

OVERVIEW

Claude Code stores MCP configuration outside the repo in your user config. The key difference from repo-local editors is scope: once the entry is added, it is available across projects on that machine.

CONFIG FILE LOCATION

Create or edit this file: ~/.claude.json. Add the server under the mcpServers object.

PREREQUISITES
  1. Claude Code installed and working normally.
  2. An active Zephex account and API key.
  3. Write access to your Claude Code config file.
CONFIG

Claude Code reads MCP servers from user-level config, so keep the entry clean and explicit. If you already have other MCP servers configured, add zephex alongside them instead of replacing the full object.

Replace `mcp_sk_your_key_here` with the real key from Dashboard -> API Keys.

~/.claude.json
{  "mcpServers": {    "zephex": {      "type": "stdio",      "command": "npx",      "args": ["-y", "zephex"],      "env": { "ZEPHEX_API_KEY": "mcp_sk_your_key_here" }    }  }}
RESTART
  1. Save ~/.claude.json.
  2. Fully quit Claude Code.
  3. Reopen Claude Code.
  4. Start a fresh session instead of continuing an older one.
VERIFY

Claude Code should show the server from its MCP command flow before you ask it to use any tool.

  1. Run /mcp in a fresh session.
  2. You should see "zephex" listed as connected.
  3. You should see 10 tools under that server entry.
COMMON ISSUES

"zephex" shows 0 tools

Claude Code was usually not fully restarted. Close the app completely, reopen it, and run /mcp in a fresh session.

Connection failed

Check that the config uses `type: stdio`, `command: npx`, `args: ["-y", "zephex"]`, and the `ZEPHEX_API_KEY` env value exactly as shown.

JSON syntax error

Validate ~/.claude.json carefully. A missing brace, trailing comma, or duplicate mcpServers key will prevent Claude Code from loading the config.

"zephex" does not appear in /mcp at all

Check that you edited the active user config file on the same machine Claude Code is running on. A common mistake is updating a different shell profile or a copied config file.

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