zephex
⌘K
Get StartedPricingMCP ToolsDocs
←BackSign in
Get StartedPricingMCP ToolsDocs

GET STARTED

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

EDITORS19 supported

OpenCodeOAuthVS CodeClaude CodeCursorWindsurfJetBrainsKiro CLIOAuthZedOAuthGemini CLIOAuthClineOAuthGooseCodex CLIOAuthFactory AIOAuthCopilot CLIKiro IDEWarpContinueRoo CodeTrae

PLATFORM

macOSWindowsLinux

TOOLS10 tools

get_project_contextread_codefind_codecheck_packageaudit_packageexplain_architectureZephex_dev_infoscope_taskaudit_headersthinking

SUPPORT

PlansPro & Max GuideUsage & AnalyticsConnection IssuesRate LimitsBillingSecurityFAQChangelog

Continue

Continue supports two approaches: drop a YAML file in `.continue/mcpServers/` (project-level), or add a `mcpServers` block to `~/.continue/config.yaml` (global).

OVERVIEW

Continue is an open-source AI coding assistant (VS Code, JetBrains, and CLI). For project-level MCP, drop a YAML file in `.continue/mcpServers/` — Continue auto-detects it. For global config, add the `mcpServers` block to `~/.continue/config.yaml`. MCP tools are only available in Agent mode, not Chat mode.

CONFIG FILE LOCATION

Create this file: .continue/mcpServers/zephex.yaml in your project root. Create the directories if they do not exist.

PREREQUISITES
  1. Continue extension installed in VS Code or JetBrains, or the Continue CLI (`cn`).
  2. An active Zephex account and API key.
  3. Node.js 18+ so `npx` is available on PATH.
CONFIG

Drop this YAML file in the mcpServers directory. Continue auto-detects new files without a restart.

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

yaml
name: Zephexversion: 0.0.1schema: v1mcpServers:  - name: zephex    command: npx    args:      - "-y"      - "zephex"    env:      ZEPHEX_API_KEY: "mcp_sk_your_key_here"
Global config alternative

Or add this block to your global config.yaml. If `mcpServers` already exists, append the entry to the list.

yaml
mcpServers:  - name: zephex    command: npx    args:      - "-y"      - "zephex"    env:      ZEPHEX_API_KEY: "mcp_sk_your_key_here"
RESTART
  1. Save the YAML file.
  2. Reload the Continue extension (Cmd+Shift+P → 'Continue: Reload Configuration').
  3. For the CLI, start a new session.
VERIFY

Verify the server loaded and tools are accessible.

  1. Switch to Agent mode (MCP tools are not available in Chat mode).
  2. The Zephex tools should appear in the available tools list.
  3. Ask the agent to use a Zephex tool to confirm connectivity.
COMMON ISSUES

Tools not appearing

MCP tools are only available in Agent mode, not Chat mode. Switch to Agent mode first.

YAML parse error

YAML is indentation-sensitive. Use exactly 2 spaces (not tabs). The `mcpServers` key uses a list format — each entry starts with `- name:`.

Server not connecting

Ensure `npx` is on your PATH. Continue launches processes from your system shell. Run `which npx` to verify.

Config changes not taking effect

The extension does not always hot-reload. Use 'Continue: Reload Configuration' from the command palette, or restart the IDE.

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