@arikusi/deepseek-mcp-server 1.0.2 → 1.0.3

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
@@ -1,79 +1,107 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [Unreleased]
9
-
10
- ### Added
11
- - Nothing yet
12
-
13
- ### Changed
14
- - Nothing yet
15
-
16
- ### Fixed
17
- - Nothing yet
18
-
19
- ## [1.0.0] - 2025-01-13
20
-
21
- ### Added
22
- - Initial release of DeepSeek MCP Server
23
- - Support for `deepseek-chat` model
24
- - Support for `deepseek-reasoner` (R1) model with reasoning traces
25
- - Streaming mode support
26
- - Full TypeScript implementation with type safety
27
- - OpenAI-compatible API client
28
- - Comprehensive error handling
29
- - MCP protocol compliance via stdio transport
30
- - Tool: `deepseek_chat` for chat completions
31
- - Environment variable configuration for API key
32
- - Detailed documentation and examples
33
- - MIT License
34
-
35
- ### Features
36
- - **Models**:
37
- - deepseek-chat: Fast general-purpose model
38
- - deepseek-reasoner: Advanced reasoning with chain-of-thought
39
- - **Parameters**:
40
- - temperature: Control randomness (0-2)
41
- - max_tokens: Limit response length
42
- - stream: Enable streaming mode
43
- - **Output**:
44
- - Text content with formatting
45
- - Reasoning traces for R1 model
46
- - Token usage statistics
47
- - Structured response data
48
-
49
- ### Technical
50
- - Built with @modelcontextprotocol/sdk v1.0.4
51
- - Uses OpenAI SDK v4.77.3 for API compatibility
52
- - Zod v3.24.1 for schema validation
53
- - TypeScript v5.7.3
54
- - Node.js 18+ required
55
- - Stdio-based transport for process communication
56
-
57
- ## [0.1.0] - Development
58
-
59
- ### Added
60
- - Initial project setup
61
- - Basic MCP server structure
62
- - DeepSeek API integration prototype
63
-
64
- ---
65
-
66
- ## Version History
67
-
68
- - **1.0.0** (2025-01-13): Initial public release
69
- - **0.1.0** (Development): Internal development version
70
-
71
- ## Links
72
-
73
- - [npm package](https://www.npmjs.com/package/@arikusi/deepseek-mcp-server)
74
- - [GitHub repository](https://github.com/arikusi/deepseek-mcp-server)
75
- - [Issue tracker](https://github.com/arikusi/deepseek-mcp-server/issues)
76
-
77
- [Unreleased]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.0.0...HEAD
78
- [1.0.0]: https://github.com/arikusi/deepseek-mcp-server/releases/tag/v1.0.0
79
- [0.1.0]: https://github.com/arikusi/deepseek-mcp-server/releases/tag/v0.1.0
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Added
11
+ - Nothing yet
12
+
13
+ ### Changed
14
+ - Nothing yet
15
+
16
+ ### Fixed
17
+ - Nothing yet
18
+
19
+ ## [1.0.3] - 2025-02-07
20
+
21
+ ### Added
22
+ - Cost tracking for API requests
23
+ - Automatic cost calculation based on token usage
24
+ - USD cost included in response output
25
+ - Cost data available in `structuredContent.cost_usd`
26
+ - 10 MCP prompt templates for common reasoning tasks
27
+ - `debug_with_reasoning`: Debug code with step-by-step analysis
28
+ - `code_review_deep`: Comprehensive code review
29
+ - `research_synthesis`: Research and synthesize information
30
+ - `strategic_planning`: Create strategic plans with reasoning
31
+ - `explain_like_im_five`: Explain complex topics simply
32
+ - `mathematical_proof`: Prove mathematical statements
33
+ - `argument_validation`: Analyze arguments for logical fallacies
34
+ - `creative_ideation`: Generate creative ideas with feasibility analysis
35
+ - `cost_comparison`: Compare LLM costs
36
+ - `pair_programming`: Interactive coding assistant
37
+ - Enhanced response format with request information section
38
+ - Token breakdown (prompt + completion)
39
+ - Model name
40
+ - Cost in USD
41
+
42
+ ### Changed
43
+ - Updated DeepSeek Reasoner pricing to current rates ($0.55/$2.19 per 1M tokens)
44
+
45
+ ## [1.0.0] - 2025-01-13
46
+
47
+ ### Added
48
+ - Initial release of DeepSeek MCP Server
49
+ - Support for `deepseek-chat` model
50
+ - Support for `deepseek-reasoner` (R1) model with reasoning traces
51
+ - Streaming mode support
52
+ - Full TypeScript implementation with type safety
53
+ - OpenAI-compatible API client
54
+ - Comprehensive error handling
55
+ - MCP protocol compliance via stdio transport
56
+ - Tool: `deepseek_chat` for chat completions
57
+ - Environment variable configuration for API key
58
+ - Detailed documentation and examples
59
+ - MIT License
60
+
61
+ ### Features
62
+ - **Models**:
63
+ - deepseek-chat: Fast general-purpose model
64
+ - deepseek-reasoner: Advanced reasoning with chain-of-thought
65
+ - **Parameters**:
66
+ - temperature: Control randomness (0-2)
67
+ - max_tokens: Limit response length
68
+ - stream: Enable streaming mode
69
+ - **Output**:
70
+ - Text content with formatting
71
+ - Reasoning traces for R1 model
72
+ - Token usage statistics
73
+ - Structured response data
74
+
75
+ ### Technical
76
+ - Built with @modelcontextprotocol/sdk v1.0.4
77
+ - Uses OpenAI SDK v4.77.3 for API compatibility
78
+ - Zod v3.24.1 for schema validation
79
+ - TypeScript v5.7.3
80
+ - Node.js 18+ required
81
+ - Stdio-based transport for process communication
82
+
83
+ ## [0.1.0] - Development
84
+
85
+ ### Added
86
+ - Initial project setup
87
+ - Basic MCP server structure
88
+ - DeepSeek API integration prototype
89
+
90
+ ---
91
+
92
+ ## Version History
93
+
94
+ - **1.0.3** (2025-02-07): Cost tracking and prompt templates
95
+ - **1.0.0** (2025-01-13): Initial public release
96
+ - **0.1.0** (Development): Internal development version
97
+
98
+ ## Links
99
+
100
+ - [npm package](https://www.npmjs.com/package/@arikusi/deepseek-mcp-server)
101
+ - [GitHub repository](https://github.com/arikusi/deepseek-mcp-server)
102
+ - [Issue tracker](https://github.com/arikusi/deepseek-mcp-server/issues)
103
+
104
+ [Unreleased]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.0.3...HEAD
105
+ [1.0.3]: https://github.com/arikusi/deepseek-mcp-server/releases/tag/v1.0.3
106
+ [1.0.0]: https://github.com/arikusi/deepseek-mcp-server/releases/tag/v1.0.0
107
+ [0.1.0]: https://github.com/arikusi/deepseek-mcp-server/releases/tag/v0.1.0
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 DeepSeek MCP Server Contributors
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 DeepSeek MCP Server Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.