claude-code-ultimate-guide-mcp 1.0.1 → 1.0.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.
|
@@ -64,7 +64,7 @@ async function fetchFile(filePath) {
|
|
|
64
64
|
var __filename = fileURLToPath(import.meta.url);
|
|
65
65
|
var __dirname = resolve2(__filename, "..");
|
|
66
66
|
var GUIDE_ROOT = process.env.GUIDE_ROOT ? resolve2(process.env.GUIDE_ROOT) : null;
|
|
67
|
-
var CONTENT_DIR = GUIDE_ROOT ? resolve2(GUIDE_ROOT, "machine-readable") : resolve2(__dirname, "
|
|
67
|
+
var CONTENT_DIR = GUIDE_ROOT ? resolve2(GUIDE_ROOT, "machine-readable") : resolve2(__dirname, "../content");
|
|
68
68
|
var ALLOWED_EXTENSIONS = /* @__PURE__ */ new Set([
|
|
69
69
|
".md",
|
|
70
70
|
".yaml",
|
|
@@ -251,4 +251,4 @@ export {
|
|
|
251
251
|
getReleasesYamlRaw,
|
|
252
252
|
resolveDeepDive
|
|
253
253
|
};
|
|
254
|
-
//# sourceMappingURL=chunk-
|
|
254
|
+
//# sourceMappingURL=chunk-SQL4D3IG.js.map
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
loadThreatDb,
|
|
11
11
|
resolveContentPath,
|
|
12
12
|
resolveDeepDive
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-SQL4D3IG.js";
|
|
14
14
|
export {
|
|
15
15
|
getGuideRoot,
|
|
16
16
|
getReferenceYamlRaw,
|
|
@@ -23,4 +23,4 @@ export {
|
|
|
23
23
|
resolveContentPath,
|
|
24
24
|
resolveDeepDive
|
|
25
25
|
};
|
|
26
|
-
//# sourceMappingURL=content-
|
|
26
|
+
//# sourceMappingURL=content-WUE34IYK.js.map
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
loadThreatDb,
|
|
12
12
|
resolveContentPath,
|
|
13
13
|
resolveDeepDive
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-SQL4D3IG.js";
|
|
15
15
|
|
|
16
16
|
// src/index.ts
|
|
17
17
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
@@ -14477,7 +14477,7 @@ function registerChangelog(server) {
|
|
|
14477
14477
|
const labels = { day: "last 24h", week: "last 7 days", month: "last 30 days" };
|
|
14478
14478
|
const raw = await fetchChangelog();
|
|
14479
14479
|
const guideEntries = raw ? filterByPeriod(parseChangelog(raw), period) : [];
|
|
14480
|
-
const { loadReleases: loadReleases2 } = await import("./content-
|
|
14480
|
+
const { loadReleases: loadReleases2 } = await import("./content-WUE34IYK.js");
|
|
14481
14481
|
const relData = loadReleases2();
|
|
14482
14482
|
const MS = { day: 864e5, week: 7 * 864e5, month: 30 * 864e5 };
|
|
14483
14483
|
const cutoff = Date.now() - MS[period];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-ultimate-guide-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "MCP server for the Claude Code Ultimate Guide — search, read, and explore 20K+ lines of documentation directly from Claude Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"homepage": "https://github.com/FlorianBruniaux/claude-code-ultimate-guide",
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/FlorianBruniaux/claude-code-ultimate-guide.git",
|
|
17
|
+
"url": "git+https://github.com/FlorianBruniaux/claude-code-ultimate-guide.git",
|
|
18
18
|
"directory": "mcp-server"
|
|
19
19
|
},
|
|
20
20
|
"type": "module",
|
|
21
21
|
"main": "./dist/index.js",
|
|
22
22
|
"bin": {
|
|
23
|
-
"claude-code-ultimate-guide-mcp": "
|
|
23
|
+
"claude-code-ultimate-guide-mcp": "dist/index.js"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"dist/**/*.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"content"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
-
"build": "tsup",
|
|
31
|
+
"build": "tsup && chmod +x dist/index.js",
|
|
32
32
|
"dev": "GUIDE_ROOT=.. node --watch dist/index.js",
|
|
33
33
|
"start": "node dist/index.js",
|
|
34
34
|
"prepublishOnly": "npm run build"
|