grok-web-search-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@grok-web-search-mcpsearch the web for the latest AI breakthroughs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Language: English | 中文
About The Project
Agents need live web and X access with citations, not just a chat completion. This project wraps xAI’s server-side web_search and x_search tools as a single MCP tool, so hosts like Grok, Cursor, or Claude Desktop can call them without embedding xAI client logic.
Repository: https://github.com/NakanoSanku/grok-web-search-mcp
Upstream call (simplified):
POST {base_url}/responses
Authorization: Bearer <api_key>
Content-Type: application/json
{
"model": "grok-4.5",
"input": [{"role": "user", "content": "<query>"}],
"tools": [
{"type": "web_search", "enable_image_understanding": true},
{
"type": "x_search",
"allowed_x_handles": ["xai"],
"from_date": "2025-10-01",
"to_date": "2025-10-10",
"enable_image_understanding": true,
"enable_video_understanding": true
}
]
}Design goals:
One MCP tool —
web_searchenables both upstream web and X searchLean results —
ok/query/text/citations(no raw upstream dump)Custom base URL — official
https://api.x.ai/v1or OpenAI-compatible proxiesOptional vision input — attach images (URL, data URI, or local path) for visual + search questions
No PyPI required — run directly from GitHub with
uvx --from git+...
Features
Capability | Notes |
Live web search | Grok synthesizes an answer with source URLs |
Live X search |
|
X filters | Handle allow/deny lists (max 20) and inclusive date range |
Domain filters | Allowlist or denylist (max 5, mutually exclusive) |
Search media understanding | Images on web pages and X posts; videos on X posts |
Client image input | Optional |
Lean JSON output | No |
Proxy-friendly |
|
GitHub install |
|
Not included: enable_image_search (web image gallery embedding). Use images when you provide a picture; use enable_image_understanding for images on browsed pages and X posts.
Built With
Related MCP server: WebQuest MCP
Getting Started
Prerequisites
Python 3.10+
An xAI API key (or a key for a compatible gateway)
uv (recommended for
uvxfrom GitHub)
# optional: install uv
curl -LsSf https://astral.sh/uv/install.sh | shQuick start (uvx from GitHub)
No local clone required for day-to-day MCP use:
export GROK_API_KEY=xai-...
uvx --from git+https://github.com/NakanoSanku/grok-web-search-mcp.git grok-web-search-mcpPin a branch, tag, or commit when you need reproducibility:
uvx --from git+https://github.com/NakanoSanku/grok-web-search-mcp.git@main grok-web-search-mcp
# uvx --from git+https://github.com/NakanoSanku/grok-web-search-mcp.git@v0.1.0 grok-web-search-mcpLocal development install
Clone the repository:
git clone https://github.com/NakanoSanku/grok-web-search-mcp.git cd grok-web-search-mcpInstall dependencies:
uv sync # or: pip install -e ".[dev]"Create a local env file:
cp .env.example .envEdit
.envand set at leastGROK_API_KEY(see Configuration).
Configuration
Variable | Required | Default | Description |
| Yes | — | Also accepts |
| No |
| Also |
| No |
| Also |
| No |
| Request timeout (seconds) |
| No |
| Analyze images on browsed pages and X posts |
| No |
| Default thinking length for reasoning models: |
Keep secrets out of git. Prefer host-injected env for MCP configs when possible.
Usage
Run the Server
Recommended (from GitHub):
export GROK_API_KEY=xai-...
uvx --from git+https://github.com/NakanoSanku/grok-web-search-mcp.git grok-web-search-mcpFrom a local checkout:
export GROK_API_KEY=xai-...
# Windows PowerShell: $env:GROK_API_KEY="xai-..."
uv run grok-web-search-mcp
# or
uv run python -m grok_web_search_mcpCompatible proxy example:
export GROK_API_KEY=sk-xxx
export GROK_BASE_URL=http://127.0.0.1:8317/v1
export GROK_MODEL=grok-4.5
uvx --from git+https://github.com/NakanoSanku/grok-web-search-mcp.git grok-web-search-mcpMCP Host Config
Preferred: run from GitHub with uvx (no local path).
JSON-style hosts (Cursor / Claude Desktop, etc.):
{
"mcpServers": {
"grok-web-search": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/NakanoSanku/grok-web-search-mcp.git",
"grok-web-search-mcp"
],
"env": {
"GROK_API_KEY": "xai-your-key",
"GROK_BASE_URL": "https://api.x.ai/v1",
"GROK_MODEL": "grok-4.5"
}
}
}
}Grok user config (~/.grok/config.toml):
[mcp_servers.grok-web-search]
command = "uvx"
args = [
"--from",
"git+https://github.com/NakanoSanku/grok-web-search-mcp.git",
"grok-web-search-mcp",
]
enabled = true
[mcp_servers.grok-web-search.env]
GROK_API_KEY = "xai-your-key"
GROK_BASE_URL = "https://api.x.ai/v1"
GROK_MODEL = "grok-4.5"Pin a ref (branch / tag / commit):
args = [
"--from",
"git+https://github.com/NakanoSanku/grok-web-search-mcp.git@main",
"grok-web-search-mcp",
]Local development only (absolute path to a checkout):
[mcp_servers.grok-web-search]
command = "uv"
args = [
"run",
"--directory",
"/absolute/path/to/grok-web-search-mcp",
"grok-web-search-mcp",
]
enabled = trueTool: web_search
Parameter | Type | Description |
| string | Search question (required) |
| string? | Override default model |
| string? | Web-search allowlist (max 5); exclusive with excluded |
| string? | Web-search denylist (max 5) |
| string? | Comma-separated X handle allowlist (max 20); exclusive with excluded |
| string? | Comma-separated X handle denylist (max 20) |
| string? | Inclusive X search start date ( |
| string? | Inclusive X search end date ( |
| bool? | Analyze images on browsed pages and X posts (default on) |
| bool? | Analyze videos in X posts (default off) |
| string? | Your image input(s): URL / |
| string? |
|
| string? | Optional system instruction |
| string? | Thinking length for reasoning models: |
images are sent as Responses API input_image parts (local files are base64-encoded, ~20MB max each). This is not “search the web for stock images.”
Response Shape
Success:
{
"ok": true,
"query": "What is xAI?",
"text": "...",
"citations": ["https://x.ai"]
}Failure:
{
"ok": false,
"error": "Grok API error (401): ...",
"status_code": 401
}Intentionally not returned: full API key, model, base_url, raw upstream JSON, or annotation blobs (URLs are mined into citations only). Diagnose config outside the tool result (env / host MCP settings).
Python Client Example
import asyncio
from grok_web_search_mcp.client import GrokWebSearchClient
from grok_web_search_mcp.config import Settings
async def main():
async with GrokWebSearchClient(Settings.from_env()) as client:
result = await client.web_search("What is xAI?")
print(result.to_dict())
asyncio.run(main())Real calls consume model + server-side search quota. Unit tests use mocks and do not hit the network.
Development
git clone https://github.com/NakanoSanku/grok-web-search-mcp.git
cd grok-web-search-mcp
uv sync
uv run pytestProject layout:
src/grok_web_search_mcp/
server.py # MCP tool surface
client.py # Responses API client + image helpers
config.py # Environment settings
tests/Roadmap
Single lean
web_searchMCP toolEnable upstream
web_searchandx_searchby defaultX handle/date filters and image/video understanding
Custom
base_url/ proxy supportDomain allow/deny filters
Optional multimodal image input
Install / run from GitHub via
uvxOptional Streamable HTTP transport docs/examples
Golden-set evaluation harness for search quality
See the open issues.
Contributing
Contributions are welcome.
Fork the project
Create your feature branch (
git checkout -b feature/AmazingFeature)Commit your changes (
git commit -m 'Add some AmazingFeature')Push to the branch (
git push origin feature/AmazingFeature)Open a Pull Request
Please keep the tool surface lean: prefer one well-documented tool over many thin wrappers.
License
Distributed under the MIT License. See LICENSE for more information.
Acknowledgments
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/NakanoSanku/grok-web-search-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server