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

Trae

Trae supports MCP via Settings → MCP → Manual Configuration, or a project-level `.trae/mcp.json` file (requires enabling Project MCP in beta settings).

OVERVIEW

Trae is an AI-powered IDE by ByteDance with native MCP support. You can add servers through the Settings panel or by placing a `.trae/mcp.json` file in your project root. Project-level config requires enabling a beta feature first. The JSON format is the standard `mcpServers` shape used by most editors.

CONFIG FILE LOCATION

Save to .trae/mcp.json in your project root, or add via Settings → MCP → Add MCP Server → Manual Configuration.

PREREQUISITES
  1. Trae IDE installed from trae.ai.
  2. An active Zephex account and API key.
  3. Node.js 18+ so `npx` is available on PATH.
  4. For project-level config: Settings → Beta → Enable Project MCP must be turned on.
CONFIG

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

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

Add the server through the Trae UI:

  1. Click the Settings button in the upper-right corner.
  2. Navigate to the MCP section under Agent settings.
  3. Click "Add MCP Server" → "Manual Configuration".
  4. Paste the JSON config.
  5. Save.
VERIFY

Verify the server is connected.

  1. Check the MCP server list — Zephex should show an active status.
  2. Open an AI chat session and ask it to use a Zephex tool.
  3. Confirm the tool executes and returns results.
COMMON ISSUES

Project-level config not loading

Settings → Beta → "Enable Project MCP" must be turned on. Without this, `.trae/mcp.json` is ignored entirely.

Server not connecting

Verify the JSON syntax is valid and `npx` is on your PATH. Try restarting Trae if the server was added while a session was active.

Config not found after enabling beta

The `.trae/mcp.json` file must be in the workspace root directory. Subdirectories are not scanned.

Authentication errors from Zephex

Double-check your API key is correct and has not expired. Generate a new key from the Zephex dashboard if needed.

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