René's URL Explorer Experiment


Title: [BUG] MCP server: pull_request_read.get_review_comments omits thread node id, making resolve_review_thread unusable · Issue #56791 · anthropics/claude-code · GitHub

Open Graph Title: [BUG] MCP server: pull_request_read.get_review_comments omits thread node id, making resolve_review_thread unusable · Issue #56791 · anthropics/claude-code

X Title: [BUG] MCP server: pull_request_read.get_review_comments omits thread node id, making resolve_review_thread unusable · Issue #56791 · anthropics/claude-code

Description: Preflight Checklist I have searched existing issues and this hasn't been reported yet This is a single bug report (please file separate reports for different bugs) I am using the latest version of Claude Code What's Wrong? n Claude Code ...

Open Graph Description: Preflight Checklist I have searched existing issues and this hasn't been reported yet This is a single bug report (please file separate reports for different bugs) I am using the latest version of ...

X Description: Preflight Checklist I have searched existing issues and this hasn't been reported yet This is a single bug report (please file separate reports for different bugs) I am using the latest version...

Opengraph URL: https://github.com/anthropics/claude-code/issues/56791

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[BUG] MCP server: pull_request_read.get_review_comments omits thread node id, making resolve_review_thread unusable","articleBody":"### Preflight Checklist\n\n- [x] I have searched [existing issues](https://github.com/anthropics/claude-code/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug) and this hasn't been reported yet\n- [x] This is a single bug report (please file separate reports for different bugs)\n- [x] I am using the latest version of Claude Code\n\n### What's Wrong?\n\nn Claude Code Sessions (CCR), the Anthropic-hosted GitHub MCP server at https://api.anthropic.com/v2/ccr-sessions/\u003csession\u003e/github/mcp exposes a pair of tools that don't compose:\n\nmcp__github__pull_request_read with method get_review_comments returns review threads with no id field.\nmcp__github__resolve_review_thread (and pull_request_review_write method resolve_thread) require a GraphQL thread node ID (PRRT_kwDO…) and explicitly say in their description to \"Get thread IDs from pull_request_read with method get_review_comments.\"\nResult: the /review skill can post replies after addressing comments but cannot programmatically resolve the threads. Every session in this environment leaves stale unresolved threads requiring manual UI clicks.\n\nThe actual response shape from get_review_comments for each thread:\n\n{\n  \"is_resolved\": true,\n  \"is_outdated\": true,\n  \"is_collapsed\": true,\n  \"comments\": [ { \"body\": \"...\", \"path\": \"...\", \"author\": \"...\",\n                  \"created_at\": \"...\", \"updated_at\": \"...\", \"html_url\": \"...\" } ],\n  \"total_count\": 1\n}\nNo id, no databaseId, no node identifier at the thread or comment level. So the threadId required by the resolve tools cannot be obtained or derived in-session.\n\n### What Should Happen?\n\nget_review_comments should include the GraphQL id (and ideally databaseId) on each review_threads[] entry, matching what resolve_review_thread and pull_request_review_write.resolve_thread document as their input source. Expected shape:\n\n{\n  \"id\": \"PRRT_kwDOQKV1Cs6-U6j9\",\n  \"databaseId\": 12345678,\n  \"is_resolved\": false,\n  \"is_outdated\": false,\n  \"is_collapsed\": false,\n  \"comments\": [ ... ],\n  \"total_count\": 1\n}\nWith that one field present, the existing resolve tools become usable, the /review skill's resolve-after-fix step works end-to-end, and there is no consumer-side change needed (the resolve tools already accept this exact node-ID format).\n\nSteps to reproduce\nIn any Claude Code Session scoped to a repo with a PR that has review threads, call:\nmcp__github__pull_request_read({\n  method: \"get_review_comments\",\n  owner: \"videofactsai\",\n  repo: \"portfolio-paths\",\n  pullNumber: 205,\n  perPage: 3\n})\nInspect any element of the returned review_threads[] array.\nObserve that the keys are exactly is_resolved | is_outdated | is_collapsed | comments | total_count — no thread id.\nTry to call mcp__github__resolve_review_thread — there is no value available to pass as threadId.\nVerified across perPage 3 / 5 / 100, page 1 / 2 / 3, and after an MCP server reconnect within the same session. Any PR with review threads reproduces.\n\nWorkaround\nNone in this environment. CCR sessions have no gh CLI, no GITHUB_TOKEN, and no direct GitHub API access — all confirmed in env. Other Claude environments fall back to gh api graphql to fetch the missing node IDs; that path is unavailable here. Manual resolution in the GitHub UI is the only option until fixed.\n\nEnvironment\nClaude Code: 2.1.131\nModel: Claude Opus 4.7 (claude-opus-4-7[1m]); reproduces independent of model\nSurface: Claude Code Session (CCR) on Anthropic infrastructure\nMCP server URL pattern: https://api.anthropic.com/v2/ccr-sessions/\u003csession\u003e/github/mcp\nMCP server ID: 735f0525-e70b-533b-8355-c868c8e04799\nRepo scope: videofactsai/portfolio-paths (any repo reproduces)\nPlatform: Linux 6.18.5\n\n### Error Messages/Logs\n\n```shell\n\n```\n\n### Steps to Reproduce\n\nIn any Claude Code Session scoped to a repo with a PR that has review threads, call:\nmcp__github__pull_request_read({\n  method: \"get_review_comments\",\n  owner: \"videofactsai\",\n  repo: \"portfolio-paths\",\n  pullNumber: 205,\n  perPage: 3\n})\nInspect any element of the returned review_threads[] array.\nObserve that the keys are exactly is_resolved | is_outdated | is_collapsed | comments | total_count — no thread id.\nTry to call mcp__github__resolve_review_thread — there is no value available to pass as threadId.\nVerified across perPage 3 / 5 / 100, page 1 / 2 / 3, and after an MCP server reconnect within the same session. Any PR with review threads reproduces.\n\nWorkaround\nNone in this environment. CCR sessions have no gh CLI, no GITHUB_TOKEN, and no direct GitHub API access — all confirmed in env. Other Claude environments fall back to gh api graphql to fetch the missing node IDs; that path is unavailable here. Manual resolution in the GitHub UI is the only option until fixed.\n\n### Claude Model\n\nOpus\n\n### Is this a regression?\n\nNo, this never worked\n\n### Last Working Version\n\n_No response_\n\n### Claude Code Version\n\nClaude Code 2.1.131, model Claude Opus 4.7 (claude-opus-4-7[1m])\n\n### Platform\n\nAnthropic API\n\n### Operating System\n\nmacOS\n\n### Terminal/Shell\n\nTerminal.app (macOS)\n\n### Additional Information\n\n_No response_","author":{"url":"https://github.com/bellaura","@type":"Person","name":"bellaura"},"datePublished":"2026-05-06T19:40:57.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/56791/claude-code/issues/56791"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:eb900a1c-36f5-d9ef-aa39-3ccc1da0c61d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDB98:1CFC3B:30E0EEC:40B544F:6A652AE7
html-safe-nonce30376d802ba3e8fa778bef1263ba3ea2b8d6d8c09e75436bc3672578cc6466c3
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQjk4OjFDRkMzQjozMEUwRUVDOjQwQjU0NEY6NkE2NTJBRTciLCJ2aXNpdG9yX2lkIjoiNDU0ODA2ODAxMTE0MTMxMTIwNyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmace3217fdc24f2ce452db9b9898eeba0da2813ef619e16cc180487401e02b82f9f
hovercard-subject-tagissue:4393932717
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/anthropics/claude-code/56791/issue_layout
twitter:imagehttps://opengraph.githubassets.com/13907987f66fe49be9fc582160e8aae840c918238838a43ed7e8b5734d9e4409/anthropics/claude-code/issues/56791
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/13907987f66fe49be9fc582160e8aae840c918238838a43ed7e8b5734d9e4409/anthropics/claude-code/issues/56791
og:image:altPreflight Checklist I have searched existing issues and this hasn't been reported yet This is a single bug report (please file separate reports for different bugs) I am using the latest version of ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamebellaura
hostnamegithub.com
expected-hostnamegithub.com
None52c76df668885aaff23b50bdca1fa1ea44ac9c1553e888ebc70ff1e4daa4625b
turbo-cache-controlno-preview
go-importgithub.com/anthropics/claude-code git https://github.com/anthropics/claude-code.git
octolytics-dimension-user_id76263028
octolytics-dimension-user_loginanthropics
octolytics-dimension-repository_id937253475
octolytics-dimension-repository_nwoanthropics/claude-code
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id937253475
octolytics-dimension-repository_network_root_nwoanthropics/claude-code
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release309153364422b3c499922d1a2a6404910a58ed8e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/anthropics/claude-code/issues/56791#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fanthropics%2Fclaude-code%2Fissues%2F56791
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fanthropics%2Fclaude-code%2Fissues%2F56791
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=anthropics%2Fclaude-code
Reloadhttps://github.com/anthropics/claude-code/issues/56791
Reloadhttps://github.com/anthropics/claude-code/issues/56791
Reloadhttps://github.com/anthropics/claude-code/issues/56791
Please reload this pagehttps://github.com/anthropics/claude-code/issues/56791
anthropics https://github.com/anthropics
claude-codehttps://github.com/anthropics/claude-code
Notifications https://github.com/login?return_to=%2Fanthropics%2Fclaude-code
Fork 22.3k https://github.com/login?return_to=%2Fanthropics%2Fclaude-code
Star 139k https://github.com/login?return_to=%2Fanthropics%2Fclaude-code
Code https://github.com/anthropics/claude-code
Issues 5k+ https://github.com/anthropics/claude-code/issues
Pull requests 704 https://github.com/anthropics/claude-code/pulls
Actions https://github.com/anthropics/claude-code/actions
Security and quality 30 https://github.com/anthropics/claude-code/security
Insights https://github.com/anthropics/claude-code/pulse
Code https://github.com/anthropics/claude-code
Issues https://github.com/anthropics/claude-code/issues
Pull requests https://github.com/anthropics/claude-code/pulls
Actions https://github.com/anthropics/claude-code/actions
Security and quality https://github.com/anthropics/claude-code/security
Insights https://github.com/anthropics/claude-code/pulse
[BUG] MCP server: pull_request_read.get_review_comments omits thread node id, making resolve_review_thread unusablehttps://github.com/anthropics/claude-code/issues/56791#top
area:mcphttps://github.com/anthropics/claude-code/issues?q=state%3Aopen%20label%3A%22area%3Amcp%22
bugSomething isn't workinghttps://github.com/anthropics/claude-code/issues?q=state%3Aopen%20label%3A%22bug%22
staleIssue is inactivehttps://github.com/anthropics/claude-code/issues?q=state%3Aopen%20label%3A%22stale%22
https://github.com/bellaura
bellaurahttps://github.com/bellaura
on May 6, 2026https://github.com/anthropics/claude-code/issues/56791#issue-4393932717
existing issueshttps://github.com/anthropics/claude-code/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug
https://api.anthropic.com/v2/ccr-sessions/https://api.anthropic.com/v2/ccr-sessions/
https://api.anthropic.com/v2/ccr-sessions/https://api.anthropic.com/v2/ccr-sessions/
area:mcphttps://github.com/anthropics/claude-code/issues?q=state%3Aopen%20label%3A%22area%3Amcp%22
bugSomething isn't workinghttps://github.com/anthropics/claude-code/issues?q=state%3Aopen%20label%3A%22bug%22
staleIssue is inactivehttps://github.com/anthropics/claude-code/issues?q=state%3Aopen%20label%3A%22stale%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.