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

Roo Code

Roo Code reads MCP configs from `.roo/mcp.json` in your project root. Project-level configs override global settings.

OVERVIEW

Roo Code is a VS Code extension with native MCP support. It reads from `.roo/mcp.json` (project-level) or the global `mcp_settings.json` (accessible via the MCP panel). Project configs take precedence. Roo Code auto-detects the file when it exists in your workspace root — no manual reload needed.

CONFIG FILE LOCATION

Create this file: .roo/mcp.json in your project root. Create the .roo directory if it does not exist.

PREREQUISITES
  1. Roo Code VS Code extension installed from the marketplace.
  2. An active Zephex account and API key.
  3. Node.js 18+ so `npx` is available on PATH.
CONFIG

Paste the JSON exactly as shown. The format is the same as Cursor and Cline.

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

json
{  "mcpServers": {    "zephex": {      "command": "npx",      "args": ["-y", "zephex"],      "env": { "ZEPHEX_API_KEY": "mcp_sk_your_key_here" }    }  }}
SETTINGS PANEL

Or use the Roo Code MCP settings panel:

  1. Click the MCP icon in the Roo Code panel navigation.
  2. Scroll to the bottom and click "Edit Project MCP".
  3. Paste the JSON config into the file that opens.
  4. Save the file.
VERIFY

Verify the server loaded before using it.

  1. Open the MCP settings panel — Zephex should appear in the server list.
  2. Status indicator should show green (connected).
  3. Start a conversation and ask Roo to use a Zephex tool.
COMMON ISSUES

"zephex" not appearing in the MCP list

Ensure `.roo/mcp.json` is in the workspace root (not a subdirectory). The file must be valid JSON with no trailing commas.

Server shows as disconnected

Check that `npx` is on your PATH. Try running `npx -y zephex` manually in your terminal. If it fails, Node.js is not properly installed.

MCP tools not available

Ensure "Enable MCP Servers" is checked in the Roo Code settings. If disabled, no MCP tools will load regardless of config.

Timeout errors

Increase the Network Timeout for the server in the MCP panel. Default is 60 seconds — try 120 for slower connections or cold starts.

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