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

Rate Limits

Zephex applies monthly and burst controls per API key so request volume stays predictable and abuse stays contained.

Plan Limits
PlanMonthly RequestsPer-minute capConcurrent requests
Free300101
Pro3,500603
Max10,00020010
Per-Minute Limits

Monthly allowance is not the only limit. Each plan also has a shorter burst cap and a concurrent request ceiling to prevent one key from overwhelming the hosted endpoint.

Rate Limit Headers

Every API response includes:

rate-limit-headers.txt
X-RateLimit-Limit: 300X-RateLimit-Remaining: 247X-RateLimit-Reset: 1714521600

X-RateLimit-Reset is a Unix timestamp in seconds for when the monthly counter resets.

Reset Schedule

Limits reset on the first day of each month at 00:00 UTC. Usage is tracked per API key, not per account. If you have multiple keys, each key has its own counter that all count toward your plan's monthly total.

  • Use scope_task before code-reading sessions to reduce wasted tool calls.
  • Use get_project_context once at the start of a session rather than calling it repeatedly.
  • Keep separate keys for local, staging, and production to make usage easier to trace.
When Exceeded
rate-limit-exceeded.json
{  "error": "rate_limit_exceeded",  "message": "Monthly limit of 300 requests reached. Upgrade to Pro for 3,500 requests.",  "reset_at": "2026-05-01T00:00:00Z",  "upgrade_url": "https://zephex.dev/pricing"}