ralph-hero-mcp-server 1.2.0 → 1.3.0

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.
Files changed (2) hide show
  1. package/dist/index.js +12 -9
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -34,17 +34,20 @@ function initGitHubClient() {
34
34
  if (!repoToken) {
35
35
  console.error("[ralph-hero] Error: No GitHub token found.\n" +
36
36
  "\n" +
37
- "Set one of these environment variables:\n" +
38
- " RALPH_GH_REPO_TOKEN - Token with 'repo' scope (for issues/PRs)\n" +
39
- " RALPH_GH_PROJECT_TOKEN - Token with 'project' scope (for project fields)\n" +
40
- " RALPH_HERO_GITHUB_TOKEN - Single token with both scopes\n" +
37
+ "Quick fix add to .claude/settings.local.json:\n" +
41
38
  "\n" +
42
- "For org repos where project is owned by a different user:\n" +
43
- " RALPH_GH_REPO_TOKEN = PAT with org repo access\n" +
44
- " RALPH_GH_PROJECT_TOKEN = PAT with personal project access\n" +
39
+ ' {\n' +
40
+ ' "env": {\n' +
41
+ ' "RALPH_HERO_GITHUB_TOKEN": "ghp_your_token_here"\n' +
42
+ " }\n" +
43
+ " }\n" +
45
44
  "\n" +
46
- "Generate tokens at: https://github.com/settings/tokens\n" +
47
- "Required scopes: 'repo' and/or 'project'");
45
+ "Then restart Claude Code.\n" +
46
+ "\n" +
47
+ "Generate a token at: https://github.com/settings/tokens\n" +
48
+ "Required scopes: repo, project\n" +
49
+ "\n" +
50
+ "For advanced setups (dual tokens, org projects), run /ralph-setup.");
48
51
  process.exit(1);
49
52
  }
50
53
  const owner = resolveEnv("RALPH_GH_OWNER");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-hero-mcp-server",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "MCP server for GitHub Projects V2 - Ralph workflow automation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",