claude-code-ultimate-guide/mcp-server/package.json
Florian BRUNIAUX ff11f7566b fix(mcp): correct releases GitHub URL (guide/core/ path)
Wrong path guide/claude-code-releases.md → guide/core/claude-code-releases.md in 3 tools (changelog, releases, compare-versions). Was generating 404 links in get_digest output.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-11 14:49:47 +01:00

48 lines
1.2 KiB
JSON

{
"name": "claude-code-ultimate-guide-mcp",
"version": "1.0.4",
"description": "MCP server for the Claude Code Ultimate Guide — search, read, and explore 20K+ lines of documentation directly from Claude Code",
"keywords": [
"mcp",
"claude-code",
"anthropic",
"documentation",
"guide"
],
"author": "Florian Bruniaux",
"license": "MIT",
"homepage": "https://github.com/FlorianBruniaux/claude-code-ultimate-guide",
"repository": {
"type": "git",
"url": "git+https://github.com/FlorianBruniaux/claude-code-ultimate-guide.git",
"directory": "mcp-server"
},
"type": "module",
"main": "./dist/index.js",
"bin": {
"claude-code-ultimate-guide-mcp": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"content"
],
"scripts": {
"build": "tsup && chmod +x dist/index.js",
"dev": "GUIDE_ROOT=.. node --watch dist/index.js",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"yaml": "^2.4.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
}
}