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

Kiro CLI

Kiro CLI should use the stdio MCP config shown below. Start with `npx -y zephex`, then fall back to absolute paths only if your environment cannot find `npx`.

OVERVIEW

Kiro CLI is the renamed Amazon Q Developer CLI, now part of the Kiro IDE ecosystem from AWS. For Zephex, the reliable setup is the stdio MCP config in `~/.kiro/settings/mcp.json` or `<project>/.kiro/settings/mcp.json`, passing your key through `ZEPHEX_API_KEY`.

CONFIG FILE LOCATION

~/.kiro/settings/mcp.json for a global setup, or <project>/.kiro/settings/mcp.json for a project-local one.

PREREQUISITES
  1. Kiro CLI installed from https://kiro.dev or via your AWS tooling workflow.
  2. A Zephex API key from your dashboard.
CONFIG

Paste the JSON exactly as shown. If you came from Amazon Q Developer CLI, use the new `~/.kiro/` path instead of the old `~/.aws/amazonq/` location.

Replace `mcp_sk_your_key_here` with your real Zephex API key before saving.

~/.kiro/settings/mcp.json
{  "mcpServers": {    "zephex": {      "command": "npx",      "args": ["-y", "zephex"],      "env": { "ZEPHEX_API_KEY": "mcp_sk_your_key_here" }    }  }}
SETUP
  1. Save the config file at ~/.kiro/settings/mcp.json.
  2. Start Kiro CLI or restart the Kiro IDE.
  3. Run `/mcp` inside Kiro.
  4. Confirm `zephex` appears as running.
VERIFY

Use the Kiro MCP UI to confirm the MCP server actually connected.

  1. Run `kiro` and check the MCP tools panel.
  2. You should see "zephex" listed as connected with 10 tools.
COMMON ISSUES

Config not found

Make sure the file is at `~/.kiro/settings/mcp.json`, not under the old `~/.aws/amazonq/` path.

`npx` is not found

Install Node.js so Kiro can launch `npx`, or switch the config to absolute `node` and `zephex` paths if your environment does not inherit PATH correctly.

Connection closes immediately

This usually means Kiro launched without your shell PATH. Install `zephex` globally and use absolute executable paths as the fallback config.

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