@arikusi/deepseek-mcp-server 1.4.2 → 1.4.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
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.4.3] - 2026-03-07
11
+
12
+ ### Fixed
13
+ - **MCP Registry**: Shortened server.json description to meet 100-char limit
14
+
10
15
  ## [1.4.2] - 2026-03-07
11
16
 
12
17
  ### Added
@@ -259,6 +264,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
259
264
 
260
265
  ## Version History
261
266
 
267
+ - **1.4.3** (2026-03-07): MCP Registry description fix
262
268
  - **1.4.2** (2026-03-07): Streamable HTTP transport, Docker support, health endpoint, 253 tests
263
269
  - **1.4.0** (2026-03-07): Model-aware pricing, multimodal content types, flexible fallback chain, MCP Registry, 241 tests
264
270
  - **1.3.3** (2026-03-07): Streaming fallback tests, session tool_calls fix, configurable circuit breaker, session message limit, 212 tests
@@ -278,7 +284,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
278
284
  - [GitHub repository](https://github.com/arikusi/deepseek-mcp-server)
279
285
  - [Issue tracker](https://github.com/arikusi/deepseek-mcp-server/issues)
280
286
 
281
- [Unreleased]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.2...HEAD
287
+ [Unreleased]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.3...HEAD
288
+ [1.4.3]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.2...v1.4.3
282
289
  [1.4.2]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.1...v1.4.2
283
290
  [1.4.1]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.4.0...v1.4.1
284
291
  [1.4.0]: https://github.com/arikusi/deepseek-mcp-server/compare/v1.3.3...v1.4.0
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.2';
9
+ let version = '1.4.3';
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.2",
3
+ "version": "1.4.3",
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",