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

macOS

Use this page when your editor is running directly on macOS and you want the right file paths, shell checks, and restart habits before you dive into editor-specific docs.

HOSTED ENDPOINT

One MCP URL on every machine

Zephex always uses https://zephex.dev/mcp with the same Bearer header. The operating system only changes file paths, restart flow, and shell commands.

WHAT CHANGES

Path conventions and app behavior

Repo-local editors still use project files such as .cursor/mcp.json and .vscode/mcp.json, while machine-wide editors use files under your macOS home directory such as ~/.claude.json or ~/.codeium/windsurf/mcp_config.json.

PLATFORM SUMMARY

On macOS, Zephex setup is usually straightforward because every editor can reach the same hosted MCP endpoint over HTTPS. The mistakes that matter are almost always path mistakes, user-home confusion, or a partial restart that leaves the old tool list cached.

PREREQUISITES

REQUIRED

  1. A Zephex API key from Dashboard → API Keys.
  2. An editor running natively on macOS, not inside a remote Linux box or container.
  3. Terminal access with outbound HTTPS access to zephex.dev on port 443.

RULE OF THUMB

If the editor runs on this operating system, keep the config on this operating system too. If the editor actually runs in WSL, SSH, or a container, follow the guide for that runtime instead of the host desktop.

CONFIG PATHS

Use the path that matches the editor process running on your Mac. Project-root paths stay inside the repo. Home-directory paths live under your macOS user account.

EditorLocationScopeNotes
Cursor.cursor/mcp.jsonProjectCreate the .cursor folder in the repo root if it does not exist yet.
VS Code.vscode/mcp.jsonProjectKeep the file inside the currently opened workspace root.
Claude Code~/.claude.jsonUserThe tilde expands to /Users/your-name on macOS.
Windsurf~/.codeium/windsurf/mcp_config.jsonUserCreate the parent folders first if they do not exist.
JetBrainsSettings → AI Assistant → MCP ServersApp UIJetBrains uses a settings screen instead of a dotfile.
TERMINAL CHECK

Run this from Terminal on the same Mac. It confirms DNS, TLS, your API key, and the hosted tool list before you debug editor UI behavior.

DEBUG RULE

If this request succeeds but the editor still shows 0 tools, your API key and network are fine. The remaining problem is the editor config location, JSON shape, or restart flow.

verify-zephex-macos.sh
mkdir -p "$HOME/.codeium/windsurf" curl -X POST "https://zephex.dev/mcp" \  -H "Authorization: Bearer YOUR_API_KEY" \  -H "Content-Type: application/json" \  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
VERIFY

After the terminal check works, verify the editor itself with a full restart instead of trusting a warm session.

  1. Save the config file or the JetBrains MCP server entry.
  2. Fully restart the editor. For Cursor and Windsurf, quit the app with Cmd+Q instead of only closing the window.
  3. Open a fresh session and confirm zephex appears as connected with 10 tools.
EDITOR GUIDES

These pages cover the exact JSON shape, restart flow, and UI verification steps for each editor after you have picked the right file location for this operating system.

EditorUse This WhenGuide
CursorBest when you want the exact .cursor/mcp.json shape and restart flow.Open guide →
VS CodeUse this if you want prompt-based API key input in .vscode/mcp.json.Open guide →
Claude CodeUse this if your config lives in ~/.claude.json across all repos.Open guide →
WindsurfUse this if you want the exact global mcp_config.json format.Open guide →
JetBrainsUse this for IntelliJ, WebStorm, PyCharm, and other AI Assistant setups.Open guide →
COMMON ISSUES

Edited the wrong home directory

If the editor is running under a different macOS user account, files in your own home directory will be ignored. Verify the active account and keep the config under that user's home folder.

The app was restarted only partially

Window reloads or closing one tab are not enough for some editors. Quit the application fully, reopen it, and start a fresh session so the MCP config is reloaded.

Smart quotes or formatted text broke the config

If you pasted from a rich-text source, replace curly quotes with plain ASCII quotes and remove any comments or trailing commas before saving the JSON.

Terminal works but the editor shows 0 tools

That usually means the endpoint and key are valid. Recheck the exact config file location and the editor-specific JSON shape instead of rotating the key first.

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