@perrylink/dsh-cert-mcp 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  # dsh-cert-mcp
2
2
 
3
3
  [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
4
- [![DSH plugin](https://img.shields.io/badge/dsh-plugin-✅-green)](https://github.com/topics/dsh-plugin)
4
+ [![DSH plugin](https://img.shields.io/badge/dsh--plugin-✅-green)](https://github.com/topics/dsh-plugin)
5
5
  [![Gitee](https://img.shields.io/badge/Gitee-mirror-c71d23?logo=gitee)](https://gitee.com/perrylink/dsh-cert-mcp)
6
6
  [![Version](https://img.shields.io/github/v/tag/PerryLink/dsh-cert-mcp?label=version)](https://github.com/PerryLink/dsh-cert-mcp/releases)
7
7
  [![npm version](https://img.shields.io/npm/v/%40perrylink%2Fdsh-cert-mcp)](https://www.npmjs.com/package/@perrylink/dsh-cert-mcp)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@perrylink/dsh-cert-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Read-only MCP server exposing the dsh-plugin-certification registry: certification grades, snapshots and five-dimension evidence for DeepSeek Harness plugins.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
package/src/server.js CHANGED
@@ -5,7 +5,7 @@
5
5
  import { readFile } from 'node:fs/promises'
6
6
 
7
7
  const PROTOCOL_VERSION = '2024-11-05'
8
- const SERVER_INFO = { name: 'dsh-cert-mcp', version: '0.1.3' }
8
+ const SERVER_INFO = { name: 'dsh-cert-mcp', version: '0.1.4' }
9
9
  const REGISTRY_URL = 'https://raw.githubusercontent.com/PerryLink/dsh-plugin-certification/main/data/certified.json'
10
10
  const REFRESH_MS = 5 * 60 * 1000
11
11