Description
Bocha Search MCP provides integration with Bocha, a Chinese search engine for AI, enabling AI assistants to perform web searches and retrieve enhanced search details from billions of documents. Developed by kunkun, this Python-based server implementation offers two primary tools: bocha_web_search for retrieving standard search results including titles, URLs, summaries, and publication dates; and bocha_ai_search for semantic search with additional structured modal cards from vertical domains like weather, news, wikis, healthcare, and more. The server requires a Bocha API key and handles authentication, request formatting, and error handling, making it particularly useful for applications needing multilingual search capabilities with rich structured data.
Installation
git clone https://github.com/bochaai/bocha-search-mcp Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"bocha-search": {
"command": "node",
"args": [
"path/to/server.js"
]
}
}
}