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

Kiro IDE

Kiro IDE uses `.kiro/settings/mcp.json` for MCP servers. The format is identical to Kiro CLI — workspace configs override global.

OVERVIEW

Kiro is an AI IDE by AWS built on spec-driven development. It uses the standard `mcpServers` JSON format. Workspace-level configs at `<project>/.kiro/settings/mcp.json` take precedence over the global config at `~/.kiro/settings/mcp.json`. The format is identical to Cursor and most other editors.

CONFIG FILE LOCATION

Create this file: .kiro/settings/mcp.json in your project root. The `settings` subdirectory is required — do not put it directly in `.kiro/mcp.json`.

PREREQUISITES
  1. Kiro IDE installed from kiro.dev.
  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, so if you already have a working Cursor config, you can copy it directly.

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" }    }  }}
COMMAND PALETTE

Open the config directly from the IDE:

  1. Press Cmd+Shift+P (macOS) or Ctrl+Shift+P (Windows/Linux).
  2. Type "Kiro: Open workspace MCP config" and select it.
  3. Paste the JSON config.
  4. Save with Cmd+S.
VERIFY

Verify the server loaded before using it.

  1. Open the Kiro panel and check the MCP servers section.
  2. You should see "zephex" with status connected.
  3. Ask Kiro to use a Zephex tool to confirm end-to-end.
COMMON ISSUES

Config not detected

The path must be `.kiro/settings/mcp.json` — not `.kiro/mcp.json`. The `settings` subdirectory is required.

Server not connecting

Verify `npx` is on your PATH. Kiro launches processes from your system shell. Run `which npx` in your terminal to check.

Workspace vs global confusion

Workspace config (`<project>/.kiro/settings/mcp.json`) overrides global (`~/.kiro/settings/mcp.json`). If both exist, workspace wins.

JSON syntax error

Validate the file has no trailing commas or comments. Run `cat .kiro/settings/mcp.json | python3 -m json.tool` to check.

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