René's URL Explorer Experiment


Title: blocked bug from using MCP server in Antigravity IDE · Issue #2904 · github/github-mcp-server · GitHub

Open Graph Title: blocked bug from using MCP server in Antigravity IDE · Issue #2904 · github/github-mcp-server

X Title: blocked bug from using MCP server in Antigravity IDE · Issue #2904 · github/github-mcp-server

Description: Describe the bug When using the github-mcp-server with an LLM client or gateway that integrates with the Gemini API (such as Antigravity), tool initialization/registration fails with a 400 INVALID_ARGUMENT error. This is caused by an inv...

Open Graph Description: Describe the bug When using the github-mcp-server with an LLM client or gateway that integrates with the Gemini API (such as Antigravity), tool initialization/registration fails with a 400 INVALID_...

X Description: Describe the bug When using the github-mcp-server with an LLM client or gateway that integrates with the Gemini API (such as Antigravity), tool initialization/registration fails with a 400 INVALID_...

Opengraph URL: https://github.com/github/github-mcp-server/issues/2904

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"blocked bug from using MCP server in Antigravity IDE","articleBody":"\n\u003cimg width=\"526\" height=\"724\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/353784ca-dfb3-4825-8637-a03789ab1a6e\" /\u003e\n\n***\n\n### Describe the bug\n\nWhen using the `github-mcp-server` with an LLM client or gateway that integrates with the Gemini API (such as Antigravity), tool initialization/registration fails with a `400 INVALID_ARGUMENT` error. \n\nThis is caused by an invalid JSON Schema definition for the `delete` parameter within the `issue_fields` array property of the `issue_write` tool. The schema defines `delete` with `Enum: []any{true}`. Because the Gemini API's protobuf representation only supports string enums (`repeated string enum`), non-string values like the boolean `true` are serialized into an empty string (`\"\"`), which fails the API gateway validation.\n\n### Affected version\n\n```\nGitHub MCP Server\nVersion: v1.5.0\nCommit: 8cd03c018525ae0bafc9b3cdb84ec2133e01bac2\nBuild Date: 2026-06-27T07:57:40Z\n```\n\n### Steps to reproduce the behavior\n\n1. Start `github-mcp-server` in stdio mode.\n2. Launch a client that bridges the MCP server's JSON schema tool declarations to the Gemini API (such as Antigravity).\n3. Attempt to register the `issue_write` tool schema with the Gemini API.\n4. The Gemini API rejects the request, returning a `400 INVALID_ARGUMENT` response indicating `enum[0]` is empty.\n\n### Expected vs actual behavior\n\n* **Expected:** The `issue_write` tool schema registers successfully.\n* **Actual:** Registration fails with `INVALID_ARGUMENT: enum[0]: cannot be empty` because of the boolean enum constraint on the `delete` parameter. Removing `Enum: []any{true}` (making it a clean boolean type parameter, which matches the schema used in the granular `set_issue_fields` tool) resolves the error.\n\n### Logs\n\n```json\n{\n  \"error\": {\n    \"code\": 400,\n    \"message\": \"* GenerateContentRequest.tools[51].function_declarations[0].parameters.properties[issue_fields].items.properties[delete].enum[0]: cannot be empty\\n\",\n    \"status\": \"INVALID_ARGUMENT\"\n  }\n}\n```\n\n### Fix\nkindly, check the following pull request \nfix: remove invalid boolean enum from issue_write delete parameter this appears in antigravity IDE cause error\n[https://github.com/github/github-mcp-server/pull/2887](https://github.com/github/github-mcp-server/pull/2887)","author":{"url":"https://github.com/Mazen-Embaby","@type":"Person","name":"Mazen-Embaby"},"datePublished":"2026-07-18T10:46:53.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/2904/github-mcp-server/issues/2904"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:94180aa1-77ee-84c6-9b91-9c95231b5fc3
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBD92:E334E:28CCEA:3A22E0:6A6234F9
html-safe-noncec63aa1f7c6e286eae4e0accd3bb391144348e5b54a44acdb4a303aad2c960f9d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCRDkyOkUzMzRFOjI4Q0NFQTozQTIyRTA6NkE2MjM0RjkiLCJ2aXNpdG9yX2lkIjoiOTc5OTIwMjkyNDI4MjY0Njk3IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac0dfc89b5e51a0310bddf10d948054d76a6ffd711566f6f16c34af325686efff3
hovercard-subject-tagissue:4917924085
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/github/github-mcp-server/2904/issue_layout
twitter:imagehttps://opengraph.githubassets.com/0b9a2f92adbd2e211b2c6e7b38e85cf768fb9bc8308d8ec3ce4513c9ffbe9bb0/github/github-mcp-server/issues/2904
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/0b9a2f92adbd2e211b2c6e7b38e85cf768fb9bc8308d8ec3ce4513c9ffbe9bb0/github/github-mcp-server/issues/2904
og:image:altDescribe the bug When using the github-mcp-server with an LLM client or gateway that integrates with the Gemini API (such as Antigravity), tool initialization/registration fails with a 400 INVALID_...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameMazen-Embaby
hostnamegithub.com
expected-hostnamegithub.com
Nonef01037538d0c99e88fa8e01da1b1825ad354ff4da745198c7392a43592c8398c
turbo-cache-controlno-preview
go-importgithub.com/github/github-mcp-server git https://github.com/github/github-mcp-server.git
octolytics-dimension-user_id9919
octolytics-dimension-user_logingithub
octolytics-dimension-repository_id942771284
octolytics-dimension-repository_nwogithub/github-mcp-server
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id942771284
octolytics-dimension-repository_network_root_nwogithub/github-mcp-server
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
release10b5a8861bf21b66a650f894089f8ce1476c1d49
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/github/github-mcp-server/issues/2904#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgithub%2Fgithub-mcp-server%2Fissues%2F2904
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%2Fgithub%2Fgithub-mcp-server%2Fissues%2F2904
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=github%2Fgithub-mcp-server
Reloadhttps://github.com/github/github-mcp-server/issues/2904
Reloadhttps://github.com/github/github-mcp-server/issues/2904
Reloadhttps://github.com/github/github-mcp-server/issues/2904
Please reload this pagehttps://github.com/github/github-mcp-server/issues/2904
github https://github.com/github
github-mcp-serverhttps://github.com/github/github-mcp-server
Notifications https://github.com/login?return_to=%2Fgithub%2Fgithub-mcp-server
Fork 4.6k https://github.com/login?return_to=%2Fgithub%2Fgithub-mcp-server
Star 31.7k https://github.com/login?return_to=%2Fgithub%2Fgithub-mcp-server
Code https://github.com/github/github-mcp-server
Issues 171 https://github.com/github/github-mcp-server/issues
Pull requests 163 https://github.com/github/github-mcp-server/pulls
Discussions https://github.com/github/github-mcp-server/discussions
Actions https://github.com/github/github-mcp-server/actions
Models https://github.com/github/github-mcp-server/models
Security and quality 2 https://github.com/github/github-mcp-server/security
Insights https://github.com/github/github-mcp-server/pulse
Code https://github.com/github/github-mcp-server
Issues https://github.com/github/github-mcp-server/issues
Pull requests https://github.com/github/github-mcp-server/pulls
Discussions https://github.com/github/github-mcp-server/discussions
Actions https://github.com/github/github-mcp-server/actions
Models https://github.com/github/github-mcp-server/models
Security and quality https://github.com/github/github-mcp-server/security
Insights https://github.com/github/github-mcp-server/pulse
#2887https://github.com/github/github-mcp-server/pull/2887
blocked bug from using MCP server in Antigravity IDEhttps://github.com/github/github-mcp-server/issues/2904#top
#2887https://github.com/github/github-mcp-server/pull/2887
bugSomething isn't workinghttps://github.com/github/github-mcp-server/issues?q=state%3Aopen%20label%3A%22bug%22
request ai reviewhttps://github.com/github/github-mcp-server/issues?q=state%3Aopen%20label%3A%22request%20ai%20review%22
https://github.com/Mazen-Embaby
Mazen-Embabyhttps://github.com/Mazen-Embaby
on Jul 18, 2026https://github.com/github/github-mcp-server/issues/2904#issue-4917924085
https://private-user-images.githubusercontent.com/40818957/623550696-353784ca-dfb3-4825-8637-a03789ab1a6e.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODQ4MjEyODUsIm5iZiI6MTc4NDgyMDk4NSwicGF0aCI6Ii80MDgxODk1Ny82MjM1NTA2OTYtMzUzNzg0Y2EtZGZiMy00ODI1LTg2MzctYTAzNzg5YWIxYTZlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MjMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzIzVDE1MzYyNVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWNkOTY1ZmQ0ODk3OTk4NTg4ZGFkMThlMzY4MjVlYTRhZTFkZjc2YWQwZjZjMzAyNTZjMzQxMGUwZTBiZTM5OGMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.dghye5z4TbnedJ5pxHS2BBo16nd0zEAxHw1mtyNwUIc
#2887https://github.com/github/github-mcp-server/pull/2887
bugSomething isn't workinghttps://github.com/github/github-mcp-server/issues?q=state%3Aopen%20label%3A%22bug%22
request ai reviewhttps://github.com/github/github-mcp-server/issues?q=state%3Aopen%20label%3A%22request%20ai%20review%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.