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>
This commit is contained in:
parent
a0bd2c112f
commit
ff11f7566b
4 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "claude-code-ultimate-guide-mcp",
|
||||
"version": "1.0.3",
|
||||
"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",
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ export function registerChangelog(server: McpServer): void {
|
|||
lines.push(`### v${r.version} (${r.date})`);
|
||||
for (const h of r.highlights ?? []) lines.push(`- ${h}`);
|
||||
// Link to the release tracking file
|
||||
lines.push(`GitHub: ${githubUrl('guide/claude-code-releases.md')}`);
|
||||
lines.push(`GitHub: ${githubUrl('guide/core/claude-code-releases.md')}`);
|
||||
lines.push('');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { z } from 'zod';
|
|||
import { loadReleases } from '../lib/content.js';
|
||||
import { githubUrl } from '../lib/urls.js';
|
||||
|
||||
const RELEASES_GITHUB = githubUrl('guide/claude-code-releases.md');
|
||||
const RELEASES_GITHUB = githubUrl('guide/core/claude-code-releases.md');
|
||||
|
||||
interface ReleaseEntry {
|
||||
version: string;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { z } from 'zod';
|
|||
import { loadReleases } from '../lib/content.js';
|
||||
import { githubUrl } from '../lib/urls.js';
|
||||
|
||||
const RELEASES_GITHUB = githubUrl('guide/claude-code-releases.md');
|
||||
const RELEASES_GITHUB = githubUrl('guide/core/claude-code-releases.md');
|
||||
|
||||
interface ReleaseEntry {
|
||||
version: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue