websearch-deepseek
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., "@websearch-deepseekWhat are the latest features of React 19?"
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.
websearch-deepseek
A universal MCP Server that provides a web search tool powered by DeepSeek's native web search API β no third-party search API required.
Works with Claude Code, Cursor, Continue, OpenCode, pi, and any tool that supports the MCP protocol.
Features
π DeepSeek Native Search β Uses the server-side
web_search_20250305tool, no third-party search API neededπ AI-Generated Answers β Returns detailed answers synthesized from full page content, not just a list of URLs
π Source URLs Included β Every answer comes with original source links for verification
βοΈ Flexible Configuration β Choose model, toggle thinking mode, adjust token limits
π MCP Protocol β Standard JSON-RPC over stdio, compatible with all MCP clients
Related MCP server: mcp-toolkit
How It Works
User Query β DeepSeek Model
β
Server executes web_search (fetches pages)
β
Encrypted page content β Server decrypts β Feeds to model
β
Model generates detailed answer based on full content
β
Returns: AI-generated answer + source URL listOne MCP tool call = One DeepSeek API request β search, decryption, and answer generation all happen server-side.
Quick Start
1. Get a DeepSeek API Key
Visit DeepSeek Platform to sign up and get your API Key.
2. Install
npm install -g websearch-deepseek3. Configure Your AI Coding Assistant
Add the following to your MCP configuration file:
Claude Code
Edit ~/.claude/claude_desktop_config.json or .mcp.json in your project:
{
"mcpServers": {
"websearch-deepseek": {
"command": "npx",
"args": ["websearch-deepseek"],
"env": {
"DEEPSEEK_API_KEY": "sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"WEBSEARCH_MODEL": "deepseek-v4-flash",
"WEBSEARCH_THINKING": "enabled"
}
}
}
}Cursor
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"websearch-deepseek": {
"command": "npx",
"args": ["websearch-deepseek"],
"env": {
"DEEPSEEK_API_KEY": "sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}Continue (VS Code)
Edit ~/.continue/config.json, add to mcpServers:
{
"mcpServers": [
{
"name": "websearch-deepseek",
"command": "npx",
"args": ["websearch-deepseek"],
"env": {
"DEEPSEEK_API_KEY": "sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
]
}pi
Edit ~/.pi/agent/settings.json, add to mcp:
{
"mcp": {
"websearch-deepseek": {
"command": "npx",
"args": ["websearch-deepseek"],
"env": {
"DEEPSEEK_API_KEY": "sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}4. Start Using It
Restart your AI coding assistant and ask a question that needs real-time information. The assistant will automatically call the web_search tool when needed.
Examples:
"What's new in React 19?"
"Search for Python 3.13 release date and major updates"
"What are the latest AI industry news?"
Environment Variables
Variable | Required | Default | Description |
| β Yes | β | DeepSeek API Key |
| β No | β | Alternative API Key variable name |
| β No |
| Model: |
| β No |
| Thinking mode: |
| β No |
| Max tokens for response |
Model Selection Guide
Scenario | Recommended Model | Notes |
Daily search (default) |
| Fast, low cost, good quality |
Deep research |
| More detailed and accurate, slightly slower |
Thinking Mode
enabled (default): The model thinks before answering, producing higher quality results but consuming more tokens
disabled: Skips the thinking step for faster responses, suitable for simple queries
CLI Usage
You can also use it directly from the terminal:
# Set API Key
export DEEPSEEK_API_KEY=sk-xxxxxxxxxxxxxxxx
# Search
npx websearch-deepseek search "Node.js LTS versions"
# JSON output
npx websearch-deepseek search --json "TypeScript 5.8"
# Specify model and disable thinking
npx websearch-deepseek search --model deepseek-v4-pro --no-thinking "Rust latest version"Output Example
## Node.js Latest LTS Versions
As of July 2025, the latest Active LTS version of Node.js is Node.js 24.x...
| Version | Status | Initial Release | Support Until |
|---------|--------|-----------------|---------------|
| 24.x | Active LTS | 2025-05-06 | 2028-04 |
| 22.x | Maintenance | 2024-10 | 2027-04 |
### Recommendations
- New projects: Use Node.js 24 LTS
- Existing projects: Node.js 22 continues to receive security updates
---
### Sources (10):
1. [Node.js 24.0 is available...](https://...)
2. [Node.js β Node.js Releases](https://...)
...Pricing
This tool uses the DeepSeek API, which charges per token. A single search typically consumes:
Component | Estimated Tokens |
Search + thinking | ~5,000β8,000 |
Generate answer | ~1,000β3,000 |
Total per search | ~8,000β15,000 tokens |
Check DeepSeek pricing for current rates.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/lyumeng/websearch-deepseek'
If you have feedback or need assistance with the MCP directory API, please join our Discord server