npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

grok-mcp-server

v0.2.4

Published

MCP server that proxies to xAI Grok API for searching X (formerly Twitter)

Readme

grok-mcp-server

日本語版はこちら

Search X (formerly Twitter) in real-time from your AI assistant — powered by xAI's Grok API.

  • No X API account needed — just an xAI API key
  • Quick setupnpx with one env var, or deploy to Vercel and connect from claude.ai
  • Wide compatibility — Claude Code, claude.ai, Cursor, LM Studio, and other MCP clients
MCP Client  ──stdio──▶  grok-mcp-server (npx)  ──API──▶  xAI Grok API
claude.ai   ──OAuth 2.1──▶  grok-mcp-server (Vercel)  ──API──▶  xAI Grok API

What You Can Do

  • Search recent posts — Find what people are saying about any topic right now
  • Summarize discussions — Get AI-curated summaries of trends, opinions, and reactions
  • Extract structured data — Define a JSON Schema to pull exactly what you need (sentiment, topics, key quotes)
  • Drill down with follow-ups — Chain searches to filter, compare, or dig deeper into results
  • Analyze threads — Pass a post URL to get the original post and top replies ranked by engagement

Quick Start

Option A: Use via npx (Claude Code, LM Studio, Cursor, etc.)

No installation required. Add to your MCP client configuration:

{
  "mcpServers": {
    "grok-mcp-server": {
      "command": "npx",
      "args": ["-y", "grok-mcp-server@latest"],
      "env": {
        "XAI_API_KEY": "your-xai-api-key"
      }
    }
  }
}

Get your API key at console.x.ai.

Try it: "Use x_search to find recent posts about MCP servers and summarize the top opinions"

Option B: Deploy to Vercel (claude.ai web / Claude Code)

1. Deploy to Vercel

Deploy with Vercel

Click the button above. You'll be prompted to set environment variables — see Environment Variables for what to enter.

After deployment, open your project's root URL to verify the setup. The setup dashboard shows the status of each variable, provides a JWT secret generator, and guides you through any remaining steps.

2. Connect from claude.ai

  1. Log in to claude.ai
  2. Go to Settings > Integrations > Add More
  3. Enter your MCP endpoint URL: https://your-project.vercel.app/api/mcp
  4. Click Add — the OAuth authorization flow will start
  5. Enter the password you set in AUTHORIZE_PASSWORD and click Allow
  6. The x_search tool is now available in your chats!

Once registered on claude.ai, the remote MCP server is also available from Claude Code (CLI / IDE extensions) under the same account.

Try it: "Search X for reactions to the latest Grok release and return JSON with positive and negative themes"

Why grok-mcp-server?

Best for: real-time search, trend analysis, sentiment extraction, topic summarization — any read-only X research workflow.

Not for: posting, retweeting, DMs, follows, or any write operation. Use the official X MCP server (xmcp) for those.

Compared to the official X API / xmcp:

| | grok-mcp-server | Official X API (xmcp) | |---|---|---| | X API account | Not required | Required ($200+/month) | | Search results | AI-interpreted summaries & analysis | Raw API data | | Structured output | Any JSON Schema | Not built-in | | Full archive search | Available (via Grok) | Pro ($5,000/month) | | Setup | npx + 1 env var, or Vercel deploy | Local server + X Developer app + OAuth callback setup | | Write operations | Not supported | Supported |

For cost details, see Pricing below.

Pricing

Each x_search call incurs xAI API costs: token fees + X Search tool fee ($0.005/call).

| Model | Input | Output | |-------|-------|--------| | grok-4.20-non-reasoning (default) | $1.25 / 1M tokens | $2.50 / 1M tokens | | grok-4.3 | $1.25 / 1M tokens | $2.50 / 1M tokens |

See xAI Models and Pricing for the latest rates including cached input pricing.

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | JWT_SECRET | Yes | JWT signing key (generate via the setup dashboard or openssl rand -base64 32) | | XAI_API_KEY | Yes | xAI API key (obtain from console.x.ai) | | AUTHORIZE_PASSWORD | Yes | Password for the authorization screen (authorization is blocked if unset) | | BASE_URL | No | Public URL override. Auto-detected from Vercel environment variables (VERCEL_PROJECT_PRODUCTION_URL / VERCEL_URL). Defaults to http://localhost:3000 locally. |

Local Development

git clone https://github.com/valda/grok-mcp-server.git
cd grok-mcp-server
npm install
cp .env.local.example .env.local  # edit with your values
npm run dev

The dev server starts at http://localhost:3000.

CLI (stdio) development

npm run build:cli        # Build dist/cli.js
npm test                 # Run all tests

Test the stdio server locally:

XAI_API_KEY=your-key node dist/cli.js

Architecture

  • OAuth 2.1 — PKCE required, Dynamic Client Registration supported
  • MCP — POST-only JSON-RPC endpoint (exposes the x_search tool)
  • Stateless — Authorization codes, access tokens, and client registrations are all signed JWTs; Mcp-Session-Id reuses the access token (no separate session JWT)

Endpoints

| Path | Method | Description | |------|--------|-------------| | / | GET | Setup dashboard | | /.well-known/oauth-authorization-server | GET | OAuth metadata | | /api/oauth/register | POST | Client registration | | /api/oauth/authorize | GET/POST | Authorization (consent screen and code issuance) | | /api/oauth/token | POST | Token issuance (PKCE verification) | | /api/mcp | POST | MCP JSON-RPC endpoint |

Tech Stack

License

MIT