Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@lkbaba/grok-mcp

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lkbaba/grok-mcp

MCP server for xAI Grok with real-time Web + X (Twitter) search and creative brainstorming

latest
Source
npmnpm
Version
2.0.4
Version published
Weekly downloads
12
-53.85%
Maintainers
1
Weekly downloads
 
Created
Source

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 StrengthsUse Case
Web + X SearchReal-time information with transparent source URLs
X/Twitter SearchTrack social media trends, public opinion, breaking news
4-Agent ArchitectureHarper (research) + Benjamin (logic) + Lucas (creative) collaboration
2M Token ContextMassive context window for comprehensive analysis

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

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.

ParameterTypeRequiredDefaultDescription
querystringYes-Search query
search_typeenumNomixedweb / x / mixed (recommended)
modelenumNogrok-4.20-multi-agent-beta-0309See model table below
output_formatenumNotexttext (Markdown) / json (native JSON Schema enforced)
web_search_configobjectNo-Domain filters (allowed/excluded are mutually exclusive)
x_search_configobjectNo-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.

ParameterTypeRequiredDefaultDescription
topicstringYes-Brainstorming topic
contextstringNo-Additional context
context_filesstring[]No-Project files to read as context (max 10)
countnumberNo5Number of ideas (1-10)
styleenumNobalancedinnovative / practical / radical / balanced
modelenumNogrok-4.20-multi-agent-beta-0309Model selection
output_formatenumNotexttext (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

ModelArchitecturePrice (input/output per M)ContextBest For
grok-4.20-multi-agent-beta-03094-Agent collaboration$2.00 / $6.002MDefault — lowest hallucination rate (~4.2%)
grok-4.20-beta-0309-reasoningChain-of-thought$2.00 / $6.002MDeep technical analysis
grok-4.20-beta-0309-non-reasoningStandard$2.00 / $6.002MFastest speed, quick creative divergence

Performance

Tested on 2026-03-12:

OperationModelTimeTokens
Web Searchmulti-agent~29s~70K
X Searchmulti-agent~28s~48K
Brainstorm (3 ideas)multi-agent~16s~3.6K
Brainstorm (5 ideas)non-reasoning~7s~2.2K

Proxy Configuration

For users behind proxy/VPN

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

Build from source
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

FeatureGemini MCPGrok MCP
Web SearchGoogle Search (grounding)Grok Web Search
X/Twitter SearchNot availableNative support
Citation URLsGoogle redirect (opaque)Direct URLs with titles (transparent)
Search Speed~8-10s (flash)~16-29s (grok-4.20)
Agent ArchitectureSingle model4-Agent collaboration
Structured Outputtext/jsontext/json (native JSON Schema enforced)
BrainstormStructured JSONStructured 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

Keywords

mcp

FAQs

Package last updated on 12 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts