claude-code-ultimate-guide/mcp-server/package.json
Florian BRUNIAUX 5b713db6fd feat(mcp): add official Anthropic docs tracker — v1.1.0
New tools (4):
- init_official_docs()    — fetch + store baseline + current snapshots locally
- refresh_official_docs() — update current without touching baseline
- diff_official_docs()    — compare baseline vs current, 0 network, section-level
- search_official_docs(query) — search official docs, loads only matching sections

Architecture:
- 4 local cache files in ~/.cache/claude-code-guide/ (index + content, baseline + current)
- Diff reads index files only (~50KB each), never the full 1.2MB content
- search loads only matched sections from content file (not entire doc)
- Atomic writes (.tmp + rename) prevent snapshot corruption
- schemaVersion: 1 for future-proof migrations

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-11 17:28:25 +01:00

48 lines
1.2 KiB
JSON

{
"name": "claude-code-ultimate-guide-mcp",
"version": "1.1.0",
"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"
}
}