ralph-hero-mcp-server 2.4.65 → 2.4.67

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.
@@ -618,6 +618,7 @@ export function registerProjectTools(server, client, fieldCache) {
618
618
  repository { nameWithOwner name owner { login } }
619
619
  }
620
620
  ... on DraftIssue {
621
+ id
621
622
  title
622
623
  body
623
624
  }
@@ -708,6 +709,7 @@ export function registerProjectTools(server, client, fieldCache) {
708
709
  return {
709
710
  itemId: item.id,
710
711
  type: item.type,
712
+ draftIssueId: item.type === "DRAFT_ISSUE" ? content?.id ?? null : null,
711
713
  number: content?.number,
712
714
  title: content?.title,
713
715
  state: content?.state,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-hero-mcp-server",
3
- "version": "2.4.65",
3
+ "version": "2.4.67",
4
4
  "description": "MCP server for GitHub Projects V2 - Ralph workflow automation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",