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

Gemini CLI

Gemini CLI connects to Zephex through a local stdio MCP entry. Use the settings JSON below instead of the older hosted HTTP block.

OVERVIEW

Gemini CLI is Google's terminal AI agent. For Zephex, the reliable setup is the local stdio MCP config in `~/.gemini/settings.json` or `<project>/.gemini/settings.json`, running `npx -y zephex` with your `ZEPHEX_API_KEY` in the env block.

CONFIG FILE LOCATION

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

PREREQUISITES
  1. Gemini CLI installed with `npm install -g @google/gemini-cli` or `npx @google/gemini-cli`.
  2. A Zephex API key from your dashboard.
CONFIG

Paste the JSON exactly as shown under `mcpServers`. Gemini CLI should launch the local `npx -y zephex` process.

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

~/.gemini/settings.json
{  "mcpServers": {    "zephex": {      "command": "npx",      "args": ["-y", "zephex"],      "env": { "ZEPHEX_API_KEY": "mcp_sk_your_key_here" }    }  }}
SETUP
  1. Save ~/.gemini/settings.json.
  2. Restart Gemini CLI.
  3. Inside the session, run `/mcp`.
  4. Confirm `zephex` is listed as ready.
VERIFY

Confirm the MCP server is loaded before you rely on it in normal prompts.

  1. Run `/mcp` inside a Gemini session.
  2. You should see "zephex" listed with status "ready" or "connected".
  3. Ask Gemini: "what tools are available from zephex?" You should see all 10 tools.
COMMON ISSUES

`zephex` does not appear in `/mcp`

Make sure you saved the file before starting Gemini CLI, then restart the session after editing the config.

Connection works but tools are missing

Check that the config uses `command`, `args`, and `env` exactly as shown above instead of the older hosted HTTP fields.

`npx` is not found

Install Node.js so `npx` is on PATH, or switch to absolute `node` and package paths if your environment does not inherit PATH correctly.

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