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

JetBrains

JetBrains configures MCP servers through the AI Assistant settings UI instead of a repo file. Paste the native stdio JSON block below into the MCP dialog.

OVERVIEW

JetBrains is UI-driven. The MCP server is created from Settings rather than from a dotfile in the repo, but for Zephex the reliable shape is the stdio block below running `npx -y zephex` with `ZEPHEX_API_KEY` in the env block.

CONFIG FILE LOCATION

Open Settings -> Tools -> AI Assistant -> Model Context Protocol (MCP), then add a new server and paste the JSON below.

PREREQUISITES
  1. A supported JetBrains IDE such as IntelliJ IDEA, WebStorm, PyCharm, GoLand, or Rider.
  2. The AI Assistant plugin installed and enabled.
  3. An active Zephex account and API key.
CONFIG

Use the JSON exactly as shown and keep the server name as zephex.

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

jetbrains-mcp.json
{  "mcpServers": {    "zephex": {      "command": "npx",      "args": ["-y", "zephex"],      "env": { "ZEPHEX_API_KEY": "mcp_sk_your_key_here" }    }  }}
RESTART
  1. Save the MCP server entry in Settings.
  2. Restart the IDE completely.
  3. Open the AI Assistant panel again after restart.
  4. Start a new assistant session instead of reusing one that was already open.
VERIFY

JetBrains should show the hosted MCP server in the AI Assistant MCP settings before you rely on it in normal chats.

  1. Return to Settings → AI Assistant → MCP Servers.
  2. You should see "zephex" with a connected or healthy status.
  3. You should see 10 tools associated with that server.
COMMON ISSUES

"zephex" shows 0 tools

The IDE usually was not restarted after the server was created. Restart the IDE fully, then reopen the AI Assistant panel.

Connection failed

Check that the JSON uses `command`, `args`, and `env` exactly as shown above instead of the older HTTP URL/header fields.

JSON syntax error or invalid fields

If you are using the JSON as a reference, make sure the JetBrains UI fields map to the same values instead of pasting malformed JSON into a free-text field.

"zephex" does not appear in the MCP server list

Confirm the AI Assistant plugin is enabled and that you added the server under MCP Servers in the active IDE, not in a different JetBrains product on the same machine.

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