loading…
Search for a command to run...
loading…
A Model Context Protocol server with Desearch for real-time AI search, X search and web search.
A Model Context Protocol server with Desearch for real-time AI search, X search and web search.
A Model Context Protocol (MCP) server lets clients like Claude or Cursor use the Desearch AI for real-time AI X search and web search.
The Desearch MCP server includes the following tools:
npm install -g desearch-mcp-server
To install the Desearch MCP server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @Desearch-ai/desearch --client claude
Or for Cursor IDE:
npx -y @smithery/cli install @Desearch-ai/desearch --client cursor
Open Cursor IDE, access command palette Cmd+Shift+P or Ctrl+Shift+P, and search for Open MCP Settings. Click on Add new global MCP server to open the mcp.json file.
{
"mcpServers": {
"desearch": {
"command": "desearch-mcp-server",
"env": {
"DESEARCH_API_KEY": "your-api-key"
}
}
}
}
Replace your-api-key with your actual Desearch API key from console.desearch.ai/api-keys.
For the changes to take effect:
Open the Claude Desktop app and enable Developer Mode from the top-left menu bar.
Once enabled, open Settings (also from the top-left menu bar) and navigate to the Developer Option, where you'll find the Edit Config button. Clicking it will open the claude_desktop_config.json file, allowing you to make the necessary edits.
OR (if you want to open claude_desktop_config.json from terminal)
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
code %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"desearch": {
"command": "desearch-mcp-server",
"env": {
"DESEARCH_API_KEY": "your-api-key"
}
}
}
}
Replace your-api-key with your actual Desearch API key from console.desearch.ai/api-keys.
For the changes to take effect:
Server Not Found
API Key Issues
DESEARCH_API_KEY is validDESEARCH_API_KEY is correctly set in the Cursor or Claude Desktop configConnection Issues
# macOS
tail -n 50 -f ~/Library/Logs/Claude/mcp*.log
# Windows
type "%APPDATA%\Claude\logs\mcp*.log"
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"desearch-mcp-server": {
"command": "npx",
"args": [
"-y",
"desearch-mcp-server"
]
}
}
}