@arikusi/deepseek-mcp-server 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,12 +21,18 @@ A Model Context Protocol (MCP) server that integrates DeepSeek AI models with MC
|
|
|
21
21
|
### For Claude Code
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
# Install and configure in
|
|
25
|
-
claude mcp add deepseek npx @arikusi/deepseek-mcp-server
|
|
24
|
+
# Install and configure with API key (available in all projects)
|
|
25
|
+
claude mcp add -s user deepseek npx @arikusi/deepseek-mcp-server -e DEEPSEEK_API_KEY=your-key-here
|
|
26
26
|
|
|
27
|
-
#
|
|
27
|
+
# Or install for current project only
|
|
28
|
+
claude mcp add deepseek npx @arikusi/deepseek-mcp-server -e DEEPSEEK_API_KEY=your-key-here
|
|
28
29
|
```
|
|
29
30
|
|
|
31
|
+
**Scope options:**
|
|
32
|
+
- `-s user`: Available in all your projects (recommended)
|
|
33
|
+
- `-s local`: Only in current project (default)
|
|
34
|
+
- `-s project`: Project-specific `.mcp.json` file
|
|
35
|
+
|
|
30
36
|
### For Gemini CLI
|
|
31
37
|
|
|
32
38
|
```bash
|
|
@@ -114,7 +120,9 @@ If your MCP client doesn't support the `add` command, manually add to your confi
|
|
|
114
120
|
}
|
|
115
121
|
```
|
|
116
122
|
|
|
117
|
-
**
|
|
123
|
+
**Config file locations:**
|
|
124
|
+
- **Claude Code**: `~/.claude.json` (add to `projects["your-project-path"].mcpServers` section)
|
|
125
|
+
- **Other MCP clients**: Check your client's documentation for config file location
|
|
118
126
|
|
|
119
127
|
## Available Tools
|
|
120
128
|
|
|
@@ -225,7 +233,30 @@ The server will start and wait for MCP client connections via stdio.
|
|
|
225
233
|
|
|
226
234
|
### "DEEPSEEK_API_KEY environment variable is not set"
|
|
227
235
|
|
|
228
|
-
|
|
236
|
+
**Option 1: Use the correct installation command**
|
|
237
|
+
```bash
|
|
238
|
+
# Make sure to include -e flag with your API key
|
|
239
|
+
claude mcp add deepseek npx @arikusi/deepseek-mcp-server -e DEEPSEEK_API_KEY=your-key-here
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
**Option 2: Manually edit the config file**
|
|
243
|
+
|
|
244
|
+
If you already installed without the API key, edit your config file:
|
|
245
|
+
|
|
246
|
+
1. **For Claude Code**: Open `~/.claude.json` (Windows: `C:\Users\USERNAME\.claude.json`)
|
|
247
|
+
2. Find the `"mcpServers"` section under your project path
|
|
248
|
+
3. Add the `env` field with your API key:
|
|
249
|
+
```json
|
|
250
|
+
"deepseek": {
|
|
251
|
+
"type": "stdio",
|
|
252
|
+
"command": "npx",
|
|
253
|
+
"args": ["@arikusi/deepseek-mcp-server"],
|
|
254
|
+
"env": {
|
|
255
|
+
"DEEPSEEK_API_KEY": "your-api-key-here"
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
```
|
|
259
|
+
4. Save and restart Claude Code
|
|
229
260
|
|
|
230
261
|
### "Failed to connect to DeepSeek API"
|
|
231
262
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arikusi/deepseek-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP Server for DeepSeek API integration - enables Claude Code to use DeepSeek Chat and Reasoner models",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"CHANGELOG.md"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
52
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
53
53
|
"openai": "^4.77.3",
|
|
54
54
|
"zod": "^3.24.1"
|
|
55
55
|
},
|