@askmesh/mcp 0.10.1 → 0.10.2
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/dist/index.js +1 -1
- package/dist/tools/askmesh.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ const TOKEN = process.env.ASKMESH_TOKEN;
|
|
|
11
11
|
const URL = process.env.ASKMESH_URL || 'https://api.askmesh.dev';
|
|
12
12
|
const server = new McpServer({
|
|
13
13
|
name: 'askmesh',
|
|
14
|
-
version: '0.10.
|
|
14
|
+
version: '0.10.2',
|
|
15
15
|
});
|
|
16
16
|
if (!TOKEN) {
|
|
17
17
|
// No token — start in setup-only mode
|
package/dist/tools/askmesh.js
CHANGED
|
@@ -332,7 +332,7 @@ function setupSkillsAndStatusLine(token) {
|
|
|
332
332
|
// Auto-configure status line
|
|
333
333
|
// Copy statusline.sh to a stable location (~/.claude/) so it survives npx cache clears
|
|
334
334
|
const mcpDir = dirname(fileURLToPath(import.meta.url));
|
|
335
|
-
const sourceScript = join(mcpDir, '..', 'statusline.sh');
|
|
335
|
+
const sourceScript = join(mcpDir, '..', '..', 'statusline.sh');
|
|
336
336
|
const claudeSettingsDir = join(homedir(), '.claude');
|
|
337
337
|
const stableScript = join(claudeSettingsDir, 'askmesh-statusline.sh');
|
|
338
338
|
const claudeSettingsPath = join(claudeSettingsDir, 'settings.json');
|