@arikusi/deepseek-mcp-server 1.4.3 → 1.5.0

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/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.5.0] - 2026-03-07
11
+
12
+ ### Added
13
+ - **Remote Endpoint**: Hosted BYOK (Bring Your Own Key) endpoint at `https://deepseek-mcp.tahirl.com/mcp`. Users send their own DeepSeek API key as Bearer token — no server-side key stored.
14
+ - **Cloudflare Worker**: Stateless MCP server on Cloudflare Workers edge network. Zero cold start, global distribution, free tier (100K requests/day).
15
+ - **Remote Quick Start**: Claude Code, Cursor, Windsurf can connect to the remote endpoint with `--transport http` — no npm install or Node.js required.
16
+
17
+ ### Changed
18
+ - README restructured: Remote (no install) as primary quick start, local stdio as secondary.
19
+ - server.json: Added streamableHttp transport package for remote endpoint.
20
+ - llms.txt/llms-full.txt: Updated with remote endpoint documentation.
21
+
10
22
  ## [1.4.3] - 2026-03-07
11
23
 
12
24
  ### Fixed
@@ -264,8 +276,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
264
276
 
265
277
  ## Version History
266
278
 
279
+ - **1.5.0** (2026-03-07): Cloudflare Workers remote endpoint (BYOK), deepseek-mcp.tahirl.com
267
280
  - **1.4.3** (2026-03-07): MCP Registry description fix
268
281
  - **1.4.2** (2026-03-07): Streamable HTTP transport, Docker support, health endpoint, 253 tests
282
+ - **1.4.1** (2026-03-07): MCP Registry, Glama registry, Smithery compatibility
269
283
  - **1.4.0** (2026-03-07): Model-aware pricing, multimodal content types, flexible fallback chain, MCP Registry, 241 tests
270
284
  - **1.3.3** (2026-03-07): Streaming fallback tests, session tool_calls fix, configurable circuit breaker, session message limit, 212 tests
271
285
  - **1.3.2** (2026-03-06): OpenAI SDK v6, Zod v4, DEFAULT_MODEL config
@@ -284,7 +298,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
284
298
  - [GitHub repository](https://github.com/arikusi/deepseek-mcp-server)
285
299
  - [Issue tracker](https://github.com/arikusi/deepseek-mcp-server/issues)
286
300
 
287
- [Unreleased]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.3...HEAD
301
+ [Unreleased]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.5.0...HEAD
302
+ [1.5.0]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.3...v1.5.0
288
303
  [1.4.3]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.2...v1.4.3
289
304
  [1.4.2]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.1...v1.4.2
290
305
  [1.4.1]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.0...v1.4.1
package/README.md CHANGED
@@ -22,31 +22,49 @@ MCP server for DeepSeek AI models (Chat + Reasoner). Supports stdio and HTTP tra
22
22
 
23
23
  ## Quick Start
24
24
 
25
- ### For Claude Code
25
+ ### Remote (No Install)
26
26
 
27
+ Use the hosted endpoint directly — no npm install, no Node.js required. Bring your own DeepSeek API key:
28
+
29
+ **Claude Code:**
27
30
  ```bash
28
- # Install and configure with API key (available in all projects)
29
- claude mcp add -s user deepseek npx @arikusi/deepseek-mcp-server -e DEEPSEEK_API_KEY=your-key-here
31
+ claude mcp add --transport http deepseek \
32
+ https://deepseek-mcp.tahirl.com/mcp \
33
+ --header "Authorization: Bearer YOUR_DEEPSEEK_API_KEY"
34
+ ```
30
35
 
31
- # Or install for current project only
32
- claude mcp add deepseek npx @arikusi/deepseek-mcp-server -e DEEPSEEK_API_KEY=your-key-here
36
+ **Cursor / Windsurf / VS Code:**
37
+ ```json
38
+ {
39
+ "mcpServers": {
40
+ "deepseek": {
41
+ "url": "https://deepseek-mcp.tahirl.com/mcp",
42
+ "headers": {
43
+ "Authorization": "Bearer ${DEEPSEEK_API_KEY}"
44
+ }
45
+ }
46
+ }
47
+ }
33
48
  ```
34
49
 
35
- **Scope options:**
36
- - `-s user`: Available in all your projects (recommended)
37
- - `-s local`: Only in current project (default)
38
- - `-s project`: Project-specific `.mcp.json` file
50
+ ### Local (stdio)
39
51
 
40
- ### For Gemini CLI
52
+ **Claude Code:**
53
+ ```bash
54
+ claude mcp add -s user deepseek npx @arikusi/deepseek-mcp-server -e DEEPSEEK_API_KEY=your-key-here
55
+ ```
41
56
 
57
+ **Gemini CLI:**
42
58
  ```bash
43
- # Install and configure with API key
44
59
  gemini mcp add deepseek npx @arikusi/deepseek-mcp-server -e DEEPSEEK_API_KEY=your-key-here
45
60
  ```
46
61
 
47
- **Get your API key:** [https://platform.deepseek.com](https://platform.deepseek.com)
62
+ **Scope options** (Claude Code):
63
+ - `-s user`: Available in all your projects (recommended)
64
+ - `-s local`: Only in current project (default)
65
+ - `-s project`: Project-specific `.mcp.json` file
48
66
 
49
- That's it! Your MCP client can now use DeepSeek models!
67
+ **Get your API key:** [https://platform.deepseek.com](https://platform.deepseek.com)
50
68
 
51
69
  ---
52
70
 
@@ -65,7 +83,8 @@ That's it! Your MCP client can now use DeepSeek models!
65
83
  - **12 Prompt Templates**: Templates for debugging, code review, function calling, and more
66
84
  - **Streaming Support**: Real-time response generation
67
85
  - **Multimodal Ready**: Content part types for text + image input (enable with `ENABLE_MULTIMODAL=true`)
68
- - **HTTP Transport**: Remote access via Streamable HTTP with `TRANSPORT=http`
86
+ - **Remote Endpoint**: Hosted at `deepseek-mcp.tahirl.com/mcp` BYOK (Bring Your Own Key), no install needed
87
+ - **HTTP Transport**: Self-hosted remote access via Streamable HTTP with `TRANSPORT=http`
69
88
  - **Docker Ready**: Multi-stage Dockerfile with health checks for containerized deployment
70
89
  - **Tested**: 253 tests with 90%+ code coverage
71
90
  - **Type-Safe**: Full TypeScript implementation
@@ -411,6 +430,10 @@ claude mcp add -s user deepseek npx @arikusi/deepseek-mcp-server \
411
430
 
412
431
  ```
413
432
  deepseek-mcp-server/
433
+ ├── worker/ # Cloudflare Worker (remote BYOK endpoint)
434
+ │ ├── src/index.ts # Worker entry point
435
+ │ ├── wrangler.toml # Cloudflare config
436
+ │ └── package.json
414
437
  ├── src/
415
438
  │ ├── index.ts # Entry point, bootstrap
416
439
  │ ├── server.ts # McpServer factory (auto-version)
@@ -484,9 +507,32 @@ npm start
484
507
 
485
508
  The server will start and wait for MCP client connections via stdio.
486
509
 
487
- ### HTTP Transport
510
+ ### Remote Endpoint (Hosted)
511
+
512
+ A hosted BYOK (Bring Your Own Key) endpoint is available at:
513
+
514
+ ```
515
+ https://deepseek-mcp.tahirl.com/mcp
516
+ ```
517
+
518
+ Send your DeepSeek API key as `Authorization: Bearer <key>`. No server-side API key stored — your key is used directly per request. Powered by Cloudflare Workers (global edge, zero cold start).
519
+
520
+ > **Note:** The `deepseek-reasoner` model may take over 30 seconds for complex queries. Some MCP clients (e.g. Claude Code) have built-in tool call timeouts that may interrupt long-running requests. For complex tasks, `deepseek-chat` is recommended.
521
+
522
+ ```bash
523
+ # Test health
524
+ curl https://deepseek-mcp.tahirl.com/health
525
+
526
+ # Test MCP (requires auth)
527
+ curl -X POST https://deepseek-mcp.tahirl.com/mcp \
528
+ -H "Content-Type: application/json" \
529
+ -H "Authorization: Bearer YOUR_KEY" \
530
+ -d '{"jsonrpc":"2.0","method":"initialize","params":{"capabilities":{}},"id":1}'
531
+ ```
532
+
533
+ ### HTTP Transport (Self-Hosted)
488
534
 
489
- Run the server as an HTTP endpoint for remote access:
535
+ Run your own HTTP endpoint:
490
536
 
491
537
  ```bash
492
538
  TRANSPORT=http HTTP_PORT=3000 DEEPSEEK_API_KEY=your-key node dist/index.js
@@ -495,7 +541,6 @@ TRANSPORT=http HTTP_PORT=3000 DEEPSEEK_API_KEY=your-key node dist/index.js
495
541
  Test the health endpoint:
496
542
  ```bash
497
543
  curl http://localhost:3000/health
498
- # → {"status":"ok","version":"1.4.2","uptime":5.2,"transport":"http","timestamp":"..."}
499
544
  ```
500
545
 
501
546
  The MCP endpoint is available at `POST /mcp` (Streamable HTTP protocol).
package/dist/server.js CHANGED
@@ -6,7 +6,7 @@ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
6
6
  import { readFileSync } from 'fs';
7
7
  import { dirname, join } from 'path';
8
8
  import { fileURLToPath } from 'url';
9
- let version = '1.4.3';
9
+ let version = '1.5.0';
10
10
  try {
11
11
  const __dirname = dirname(fileURLToPath(import.meta.url));
12
12
  const pkg = JSON.parse(readFileSync(join(__dirname, '..', 'package.json'), 'utf-8'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arikusi/deepseek-mcp-server",
3
- "version": "1.4.3",
3
+ "version": "1.5.0",
4
4
  "mcpName": "io.github.arikusi/deepseek",
5
5
  "description": "MCP Server for DeepSeek API integration - enables Claude Code to use DeepSeek Chat and Reasoner models",
6
6
  "main": "dist/index.js",