@zeph-to/mcp-server 1.9.0 → 1.9.1

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/config.js +1 -1
  2. package/package.json +1 -1
package/dist/config.js CHANGED
@@ -23,7 +23,7 @@ const loadFileConfig = () => {
23
23
  const detectClaudeSessionId = () => {
24
24
  try {
25
25
  const projectDir = process.env.CLAUDE_PROJECT_DIR ?? process.cwd();
26
- const projectHash = projectDir.replace(/\//g, '-').replace(/^-/, '');
26
+ const projectHash = projectDir.replace(/\//g, '-');
27
27
  const sessionsDir = (0, path_1.join)(process.env.HOME ?? '~', '.claude', 'projects', projectHash);
28
28
  const entries = (0, fs_1.readdirSync)(sessionsDir)
29
29
  .filter((name) => /^[0-9a-f]{8}-/.test(name))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeph-to/mcp-server",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "Zeph MCP server — AI agent notifications, prompts, and input via MCP protocol",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",