Skip to main content
Glama
LKbaba

grok-mcp

by LKbaba

Grok MCP Server

Give Claude Code the power of Grok 4.20

An MCP server that connects Claude Code to xAI's Grok, unlocking real-time web search and X (Twitter) search capabilities.

Why Grok + Claude?

Grok's Strengths

Use Case

Web + X Search

Real-time information with transparent source URLs

X/Twitter Search

Track social media trends, public opinion, breaking news

4-Agent Architecture

Harper (research) + Benjamin (logic) + Lucas (creative) collaboration

2M Token Context

Massive context window for comprehensive analysis

Philosophy: Claude is the commander, Grok is the specialist for real-time search and social media intelligence.

Related MCP server: grok-quorum-mcp

Quick Start

1. Get API Key

Visit xAI Console and create an API key.

2. Configure Claude Code

Add to your MCP config file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • Linux: ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "grok-mcp": {
      "command": "npx",
      "args": ["-y", "@lkbaba/grok-mcp@latest"],
      "env": {
        "XAI_API_KEY": "your_xai_api_key_here"
      }
    }
  }
}

@latest ensures you always get the newest version when Claude Code restarts.

3. Restart Claude Code

Tools (2)

Real-time web and X (Twitter) search powered by Grok. Grok automatically analyzes queries, executes searches (potentially multiple rounds), synthesizes information, and provides cited answers.

Parameter

Type

Required

Default

Description

query

string

Yes

-

Search query

search_type

enum

No

mixed

web / x / mixed (recommended)

model

enum

No

grok-4.20-multi-agent-beta-0309

See model table below

output_format

enum

No

text

text (Markdown) / json (native JSON Schema enforced)

web_search_config

object

No

-

Domain filters (allowed/excluded are mutually exclusive)

x_search_config

object

No

-

Date range, handle filters (allowed/excluded are mutually exclusive), video understanding

Output includes: Search results with inline citations, search queries Grok used, titled source links, and usage statistics.

Example:

"Search for the latest Claude Code updates on X and the web"

grok_brainstorm - Creative Brainstorming

Multi-perspective idea generation with project context support.

Parameter

Type

Required

Default

Description

topic

string

Yes

-

Brainstorming topic

context

string

No

-

Additional context

context_files

string[]

No

-

Project files to read as context (max 10)

count

number

No

5

Number of ideas (1-10)

style

enum

No

balanced

innovative / practical / radical / balanced

model

enum

No

grok-4.20-multi-agent-beta-0309

Model selection

output_format

enum

No

text

text (Markdown) / json (native JSON Schema with pros/cons/feasibility)

Style temperature mapping: practical=0.5, balanced=0.7, innovative=0.95, radical=1.0

Example:

"Brainstorm 3 practical ideas for improving user onboarding, read ./README.md for context"

Model Selection

Model

Architecture

Price (input/output per M)

Context

Best For

grok-4.20-multi-agent-beta-0309

4-Agent collaboration

$2.00 / $6.00

2M

Default — lowest hallucination rate (~4.2%)

grok-4.20-beta-0309-reasoning

Chain-of-thought

$2.00 / $6.00

2M

Deep technical analysis

grok-4.20-beta-0309-non-reasoning

Standard

$2.00 / $6.00

2M

Fastest speed, quick creative divergence

Performance

Tested on 2026-03-12:

Operation

Model

Time

Tokens

Web Search

multi-agent

~29s

~70K

X Search

multi-agent

~28s

~48K

Brainstorm (3 ideas)

multi-agent

~16s

~3.6K

Brainstorm (5 ideas)

non-reasoning

~7s

~2.2K

Proxy Configuration

Add proxy environment variable to your config:

{
  "mcpServers": {
    "grok-mcp": {
      "command": "npx",
      "args": ["-y", "@lkbaba/grok-mcp@latest"],
      "env": {
        "XAI_API_KEY": "your_xai_api_key_here",
        "HTTPS_PROXY": "http://127.0.0.1:7897"
      }
    }
  }
}

Native fetch (undici) automatically reads proxy environment variables.

Local Development

git clone https://github.com/LKbaba/Grok-mcp.git
cd Grok-mcp
npm install
npm run build
export XAI_API_KEY="your_xai_api_key_here"
npm start

Project Structure

src/
├── config/
│   └── index.ts          # Configuration (zod validation)
├── types/
│   └── index.ts          # TypeScript type definitions
├── tools/
│   ├── definitions.ts    # MCP tool JSON Schema definitions
│   ├── agent-search.ts   # grok_agent_search implementation
│   └── brainstorm.ts     # grok_brainstorm implementation
├── utils/
│   ├── grok-client.ts    # xAI API client (native fetch)
│   ├── tool-builder.ts   # Search tool parameter builder
│   └── logger.ts         # Logging and performance monitoring
└── index.ts              # MCP server entry point

Comparison with Gemini MCP

Feature

Gemini MCP

Grok MCP

Web Search

Google Search (grounding)

Grok Web Search

X/Twitter Search

Not available

Native support

Citation URLs

Google redirect (opaque)

Direct URLs with titles (transparent)

Search Speed

~8-10s (flash)

~16-29s (grok-4.20)

Agent Architecture

Single model

4-Agent collaboration

Structured Output

text/json

text/json (native JSON Schema enforced)

Brainstorm

Structured JSON

Structured JSON + style/count/context_files

Best strategy: Use both! Gemini for speed and code analysis, Grok for deep search and X/Twitter intelligence.

Security

  • Path traversal protection: context_files are sandboxed to the working directory — paths like ../../etc/passwd are blocked

  • Sensitive file blocking: .env, .pem, .key, credentials, and database files are automatically excluded

  • Input validation: Domain filters, date ranges, handle filters, and file counts are validated with strict schemas

  • Mutual exclusivity: allowed_domains/excluded_domains and allowed_x_handles/excluded_x_handles cannot be set simultaneously

  • No hardcoded secrets: API keys are loaded from environment variables only

License

MIT

Available Tools

2 tools
grok_brainstormA

Creative brainstorming powered by Grok AI. Generates innovative ideas, multi-perspective analysis, and creative suggestions based on a given topic. Ideal for product design, content creation, problem solving, and strategic planning. Supports reading project files as context to generate project-relevant ideas.

ParametersJSON Schema
NameRequiredDescriptionDefault
countNoNumber of ideas to generate, 1-10 (default 5)
modelNoGrok model to use: - grok-4.20-multi-agent-beta-0309: 4-Agent collaboration, lowest hallucination rate (default) - grok-4.20-beta-0309-reasoning: Deep chain-of-thought reasoning - grok-4.20-beta-0309-non-reasoning: Fastest speed, creative divergencegrok-4.20-multi-agent-beta-0309
styleNoBrainstorm style: - innovative: Pursue novel and unique ideas - practical: Focus on feasibility - radical: Break conventional thinking - balanced: Balance of all (default)balanced
topicYesBrainstorm topic — can be a question, idea, product concept, etc. e.g.: "How to improve user retention", "New product feature ideas", "Marketing campaign planning"
contextNoAdditional context information (optional) to help Grok better understand the background e.g.: target audience, industry background, existing constraints, budget range, etc.
context_filesNoProject file paths (optional, max 10), reads file content as context e.g.: ["./README.md", "./docs/architecture.md"]
output_formatNoOutput format: - text: Markdown format (default) - json: Structured JSON enforced via native JSON Schema (ideas array with title/description/pros/cons/feasibility/implementation)text

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of disclosing behavior. It adds useful behavioral context beyond the name: 'Supports reading project files as context to generate project-relevant ideas.' This is the only non-obvious behavior. The description does not discuss side effects, output shape (covered by output_format param), or limitations, but for a creative generation tool, the behavior is essentially non-destructive and straightforward.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, front-loaded with the core purpose. Every sentence earns its place: purpose, use cases, and the unique context_files capability. There is no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 7-parameter tool with no output schema, the description is remarkably complete. It covers the overall function, suggests use cases, and highlights the context_files feature. The output_format parameter in the schema describes return formats, so the description does not need to repeat that. The rich parameter schemas and enums reduce the need for extensive prose.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description does not add meaning beyond what the schema already provides for each parameter. It reiterates that a topic is needed and that context_files provide project context, but the schema already documents these in detail. No additional semantic value is offered.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Generates innovative ideas, multi-perspective analysis, and creative suggestions based on a given topic.' It uses a specific verb ('generates') and resource ('ideas'), and the name 'grok_brainstorm' combined with the sibling tool 'search' makes the distinction clear, even without explicitly naming grok_agent_search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool: 'Ideal for product design, content creation, problem solving, and strategic planning.' It does not explicitly exclude alternative tools or mention grok_agent_search, but the use cases are specific enough to guide the agent. Minor deduction for lacking an explicit 'when-not-to-use' statement.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv2.0.4
    • First observedgrok_agent_search
    • First observedgrok_brainstorm

TDQS

A4.1/5.0
Disambiguation5/5

The two tools have clearly distinct purposes: one is for searching and synthesizing external information (grok_agent_search), the other for generating creative ideas (grok_brainstorm). No overlap in functionality or target use case.

Naming Consistency5/5

Both tool names follow a consistent 'grok_' prefix with descriptive snake_case actions (agent_search, brainstorm). The naming pattern is uniform and predictable.

Tool Count3/5

With only 2 tools, the server feels thin for a general-purpose Grok AI offering. The tools serve distinct functions, but the number is at the low end of what would be considered reasonable.

Completeness2/5

The server covers search and brainstorming but misses common AI capabilities like text generation, summarization, or question answering. For a server named 'grok-mcp', these are significant gaps that would require workarounds.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Integrates xAI's Grok APIs into Claude Code to enable image and video generation, real-time web searches, and multi-modal image analysis. It provides a suite of tools for interacting with Grok models directly through natural language prompts during a Claude session.
    5
    40
    1
    MIT
  • A
    license
    Not graded
    quality
    Not graded
    maintenance
    Enables Claude to query Grok as a peer for collaborative reasoning, code reviews, and architecture debates. It provides access to real-time web research and multiple specialized reasoning modes through the xAI API.
    -
  • F
    license
    B
    quality
    Not graded
    maintenance
    Integrates Grok AI into Claude Code to enable real-time X/Twitter search and deep analysis of social media links. It supports a dual-mode architecture featuring a browser-based free mode for SuperGrok subscribers and a cost-controlled API mode.
    2
    48
    1
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/LKbaba/Grok-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server