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

Zed

Zed connects to Zephex through `context_servers` in `settings.json`. Use the custom source entry below instead of the older remote URL-only config.

OVERVIEW

Zed is a high-performance editor built in Rust. For Zephex, the reliable setup is a `context_servers` entry that launches `npx -y zephex` and passes your `ZEPHEX_API_KEY` in the env block.

CONFIG FILE LOCATION

~/.config/zed/settings.json. This is Zed's global settings file. MCP servers go under the `context_servers` key.

PREREQUISITES
  1. Zed installed from https://zed.dev.
  2. A Zephex API key from your dashboard.
CONFIG

Add the `context_servers` block shown below inside your existing `settings.json`. Merge it with your current settings instead of replacing the whole file.

Replace `mcp_sk_your_key_here` with your real Zephex API key before saving.

~/.config/zed/settings.json
{  "context_servers": {    "zephex": {      "source": "custom",      "command": "npx",      "args": ["-y", "zephex"],      "env": { "ZEPHEX_API_KEY": "mcp_sk_your_key_here" }    }  }}
SETUP
  1. Open ~/.config/zed/settings.json.
  2. Add the `context_servers` block shown above and merge it with your existing settings.
  3. Save the file.
  4. Restart Zed.
  5. Open Assistant -> Settings -> Context Servers and confirm `zephex` is running.
VERIFY

Confirm the server from Zed's Assistant settings before you rely on it in prompts.

  1. Open Assistant -> Settings -> Context Servers.
  2. Confirm "zephex" is listed as a running context server.
  3. Ask the Zed AI agent what tools are available. You should see all 10 Zephex tools.
COMMON ISSUES

`zephex` never starts

Check that the entry uses `source: custom`, `command: npx`, and `args: ["-y", "zephex"]` exactly as shown.

Settings merge conflict

If your `settings.json` already has a `context_servers` key, add the `zephex` entry inside it instead of creating a second `context_servers` block.

`npx` is not found

Install Node.js so Zed can launch `npx`, or use absolute paths if your shell environment is not inherited correctly.

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