askgrokmcp
Brings xAI's Grok API into Claude Code as native tools, enabling chat, image generation, model listing, and multi-round consensus/validation analysis.
README
Grok MCP Server
A Model Context Protocol (MCP) server that brings xAI's Grok API into Claude Code as native tools.
Ask Grok questions, generate images with Aurora, run multi-round consensus analysis, and explore available models — directly from your terminal.
Tools
| Tool | Description |
|---|---|
ask_grok |
Send a prompt to Grok with optional system prompt and sampling parameters |
generate_image |
Generate images using Grok's Aurora model and save them locally |
list_models |
List all xAI models available to your account |
grok_consensus |
Run a full Consensus Validation Protocol (CVP) for deep, multi-round analysis |
grok_validate |
Run a rigorous multi-round Validation Protocol on any artifact (code, plan, prompt, PR) with scorecard + improved version |
Built-in Protocols
Consensus Validation Protocol (CVP)
The grok_consensus tool implements a structured, multi-round analysis protocol. Instead of a single prompt-and-response, it runs 3-10 iterative rounds where Grok progressively deepens its analysis — challenging its own assumptions, evaluating evidence strength, and synthesizing a balanced conclusion.
> Run CVP on whether large language models can reason
> Ask Grok to validate the claim that sleep deprivation affects decision-making — use 5 rounds
> Consensus check with Grok on the future of nuclear energy
The entire protocol executes server-side in a single tool call. Each round builds on the full conversation history for genuine iterative refinement.
Default: 3 rounds | Max: 10 rounds | Full protocol documentation
Validation Protocol
The grok_validate tool runs a rigorous, multi-round quality gate on any artifact — code, plans, research, prompts, PR descriptions, architectures. Grok produces a scored scorecard (correctness, completeness, innovation/risk, clarity, best practices), identifies critical issues, and returns an improved version ready to copy-paste.
> grok_validate with artifact is [paste your plan or code here]
> grok_validate with artifact is [auth module] criteria is security, input validation rubric is security-focused
> grok_validate with artifact is [your plan] reference is [original output] rounds is 6 rubric is strict
Supports four rubric presets: balanced (default), strict, innovative, and security-focused. An optional reference argument enables side-by-side comparison with another model's output.
Default: 5 rounds | Max: 10 rounds
Prerequisites
- Node.js >= 18
- Claude Code CLI installed
- xAI API key — get one at console.x.ai
Setup
Option A: Install from npm
npm install -g askgrokmcp
Then register with Claude Code:
claude mcp add grok -e XAI_API_KEY=your_api_key_here -- grok-mcp
Option B: Clone from source
git clone https://github.com/marceloceccon/askgrokmcp.git
cd askgrokmcp
npm install
Then register with Claude Code:
claude mcp add grok -e XAI_API_KEY=your_api_key_here -- node /path/to/askgrokmcp/grok-mcp.mjs
Replace /path/to/askgrokmcp with the actual path where you cloned the repository.
Replace your_api_key_here with your xAI API key in either option. That's it — the tools are now available in Claude Code.
Usage
Once registered, you can use the tools naturally in Claude Code:
Ask Grok a question
> ask grok what the latest news in AI are
Use a system prompt
> ask grok to review this code, using a system prompt that says "You are a senior security auditor"
Control sampling parameters
> ask grok to generate test data with temperature 0 and max_tokens 500
Use a specific model for one call
> ask grok to summarize this document using grok-3
Generate an image
> ask grok to generate an image of a sunset over mountains and save it as images/sunset.png
Generate multiple variations
> ask grok to generate 4 variations of a logo for a coffee shop and save them as images/logo.png
When generating multiple images, files are automatically numbered (e.g., logo-1.png, logo-2.png, ...).
Run a consensus analysis
> run CVP on the effectiveness of carbon capture technology
> ask grok to validate whether quantum computers will break RSA by 2030 — use 5 rounds
List available models
> list the available grok models
> list grok chat models only
> list grok image models
Model Selection
The server uses a three-level priority system for model selection:
| Priority | Mechanism | Scope |
|---|---|---|
| 1st (highest) | model argument in the tool call |
Single request |
| 2nd | GROK_CHAT_MODEL / GROK_IMAGE_MODEL env vars |
Server lifetime |
| 3rd (default) | Built-in defaults (see below) | Fallback |
Built-in defaults
At startup the server probes the xAI /models endpoint and selects the best available model:
| Purpose | Frontier (preferred) | Fallback |
|---|---|---|
| Chat | grok-4.3 |
grok-4.3 |
| Image generation | grok-imagine-image-quality |
grok-imagine-image-quality |
If the frontier model is not available on your account, the server automatically falls back to the safe default.
Change defaults via environment variable
claude mcp add grok \
-e XAI_API_KEY=your_api_key_here \
-e GROK_CHAT_MODEL=grok-3 \
-e GROK_IMAGE_MODEL=grok-2-image \
-- grok-mcp
Override per call
Just tell Claude which model to use:
> ask grok to explain quantum computing using model grok-3
Or use list_models first to discover what's available, then pick one.
File write safety
By default the server only writes images inside the current working directory (the directory Claude Code was launched from) and its subdirectories. Any path that resolves outside that directory is rejected with a clear error.
To allow writes to a different location, set the SAFE_WRITE_BASE_DIR environment variable to an absolute path:
export SAFE_WRITE_BASE_DIR=/tmp/my-images
Or pass it directly when registering the server:
claude mcp add grok \
-e XAI_API_KEY=your_api_key_here \
-e SAFE_WRITE_BASE_DIR=/tmp/my-images \
-- grok-mcp
Note: Absolute paths that resolve outside the allowed base directory are rejected. Use relative paths (e.g.
images/output.png) or setSAFE_WRITE_BASE_DIRexplicitly.
Configuration
| Variable | Default | Description |
|---|---|---|
XAI_API_KEY |
(required) | Your xAI API key |
GROK_CHAT_MODEL |
grok-4.3 |
Default model for ask_grok, grok_consensus, and grok_validate |
GROK_IMAGE_MODEL |
grok-imagine-image-quality |
Default model for generate_image |
SAFE_WRITE_BASE_DIR |
process.cwd() |
Base directory for image writes |
XAI_REQUEST_TIMEOUT_MS |
30000 |
Timeout per xAI API request in milliseconds |
XAI_MAX_RETRIES |
2 |
Number of retries for transient errors (429/5xx/network/timeout) |
XAI_RETRY_BASE_DELAY_MS |
500 |
Base delay for exponential retry backoff |
LOG_REQUESTS |
false |
Logs tool/xAI request metadata to stderr |
LOG_REQUEST_PAYLOADS |
false |
Includes full request payloads in logs (use carefully) |
Request logging
Request logging is optional and disabled by default.
Enable metadata-only logs:
export LOG_REQUESTS=true
To also log full request payloads (including prompts), explicitly enable:
export LOG_REQUESTS=true
export LOG_REQUEST_PAYLOADS=true
Important: Logs are written to stderr (not stdout) so MCP protocol communication remains safe.
Project Structure
askgrokmcp/
grok-mcp.mjs Server entry point, config, HTTP client
src/tools.js Tool definitions and handler implementations
protocols/ Protocol documentation
consensus-validation.md
grok-mcp.test.mjs Test suite
How it works
This server implements the MCP protocol over stdio. When Claude Code starts, it launches the server as a subprocess and communicates with it via JSON-RPC over stdin/stdout. The server translates MCP tool calls into xAI API requests and returns the results.
flowchart LR
A[Claude Code] -- stdio --> B[grok-mcp.mjs]
B -- HTTPS --> C[xAI API]
For the grok_consensus tool, the server manages a multi-round conversation loop with Grok internally, returning the complete analysis in a single response:
sequenceDiagram
participant C as Claude Code
participant S as grok-mcp
participant G as xAI API
C->>S: grok_consensus(topic, rounds)
loop Each round
S->>G: chat/completions (with full history)
G-->>S: Round analysis
end
S-->>C: Structured CVP results
License
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。