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

Cline

Cline connects to Zephex through its MCP server JSON. Use the stdio config below instead of the older Streamable HTTP setup.

OVERVIEW

Cline is an open-source AI coding agent for VS Code. For Zephex, the reliable setup is the stdio MCP JSON that launches `npx -y zephex` and passes your `ZEPHEX_API_KEY` through the env block.

CONFIG FILE LOCATION

Managed by the Cline extension at ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json on macOS, %APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json on Windows. You can also configure servers directly from the Cline panel without editing the file.

PREREQUISITES
  1. VS Code with the Cline extension installed from the VS Code Marketplace.
  2. A Zephex API key from zephex.dev/dashboard/api-keys.
CONFIG

Open Cline’s MCP Servers editor and paste the JSON exactly as shown.

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

cline_mcp_settings.json
{  "mcpServers": {    "zephex": {      "command": "npx",      "args": ["-y", "zephex"],      "env": { "ZEPHEX_API_KEY": "mcp_sk_your_key_here" }    }  }}
SETUP
  1. Open the Cline panel from the VS Code sidebar (robot icon).
  2. Open MCP Servers and choose Configure MCP Servers.
  3. Paste the JSON above and save.
  4. Return to the MCP panel.
  5. Confirm `zephex` shows a green dot.
VERIFY

Confirm the server is connected before relying on Zephex tools in your prompts.

  1. In the Cline panel, open MCP Servers — the zephex entry should show a green connected indicator.
  2. Start a new Cline task and ask: "what MCP tools do you have?" You should see all Zephex tools listed.
  3. If the status is yellow or tools are missing, click the server entry and choose Reconnect.
COMMON ISSUES

`zephex` does not appear in the MCP panel

Make sure you saved the JSON through Cline’s MCP server editor and that the top-level key is `mcpServers`.

Green dot but no tools available

Click Reconnect in the Cline MCP panel and verify the config uses `command`, `args`, and `env` exactly as shown.

`npx` is not found

Install Node.js so Cline can launch `npx`, or switch to absolute `node` and package paths if your environment does not inherit PATH correctly.

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