@seekrit/mcp 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +9 -9
package/dist/index.js CHANGED
@@ -664,7 +664,7 @@ function isServiceToken(value) {
664
664
  }
665
665
  //#endregion
666
666
  //#region ../cli/package.json
667
- var version$1 = "0.18.0";
667
+ var version$1 = "0.19.0";
668
668
  const PROJECT_FILE = "seekrit.json";
669
669
  function globalConfigPath() {
670
670
  return join(process.env.XDG_CONFIG_HOME ?? join(homedir(), ".config"), "seekrit", "config.json");
@@ -2221,7 +2221,7 @@ async function runMcpServer(options = {}) {
2221
2221
  * `seekrit mcp`. tsdown bundles the shared server source in at build time, so the
2222
2222
  * published package is self-contained and needs no `@seekrit/cli` install.
2223
2223
  */
2224
- runMcpServer({ version: "0.1.0" }).catch((err) => {
2224
+ runMcpServer({ version: "0.2.0" }).catch((err) => {
2225
2225
  const message = err instanceof Error ? err.message : String(err);
2226
2226
  process.stderr.write(`seekrit-mcp: fatal: ${message}\n`);
2227
2227
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekrit/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "npx-able MCP server for seekrit — let Claude Code and other MCP clients provision, manage, and inject end-to-end encrypted secrets.",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -15,18 +15,18 @@
15
15
  "engines": {
16
16
  "node": ">=20"
17
17
  },
18
- "scripts": {
19
- "build": "tsdown",
20
- "dev": "tsdown --watch",
21
- "typecheck": "tsc --noEmit"
22
- },
23
18
  "dependencies": {
24
19
  "@modelcontextprotocol/sdk": "^1.29.0",
25
20
  "zod": "^4.4.3"
26
21
  },
27
22
  "devDependencies": {
28
- "@seekrit/cli": "workspace:*",
29
23
  "@types/node": "^26.1.0",
30
- "tsdown": "^0.22.3"
24
+ "tsdown": "^0.22.3",
25
+ "@seekrit/cli": "0.19.0"
26
+ },
27
+ "scripts": {
28
+ "build": "tsdown",
29
+ "dev": "tsdown --watch",
30
+ "typecheck": "tsc --noEmit"
31
31
  }
32
- }
32
+ }