René's URL Explorer Experiment


Title: completion/complete should return EMPTY_COMPLETION_RESULT when no handler registered · Issue #991 · modelcontextprotocol/java-sdk · GitHub

Open Graph Title: completion/complete should return EMPTY_COMPLETION_RESULT when no handler registered · Issue #991 · modelcontextprotocol/java-sdk

X Title: completion/complete should return EMPTY_COMPLETION_RESULT when no handler registered · Issue #991 · modelcontextprotocol/java-sdk

Description: Bug description When a prompt has at least one @McpComplete handler registered somewhere in the server, the completions capability gets enabled globally. After that, the upstream MCP Inspector (and any well-behaved client) fires completi...

Open Graph Description: Bug description When a prompt has at least one @McpComplete handler registered somewhere in the server, the completions capability gets enabled globally. After that, the upstream MCP Inspector (and...

X Description: Bug description When a prompt has at least one @McpComplete handler registered somewhere in the server, the completions capability gets enabled globally. After that, the upstream MCP Inspector (and...

Opengraph URL: https://github.com/modelcontextprotocol/java-sdk/issues/991

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"completion/complete should return EMPTY_COMPLETION_RESULT when no handler registered","articleBody":"**Bug description**\n\nWhen a prompt has at least one `@McpComplete` handler registered somewhere in the server, the `completions` capability gets enabled globally. After that, the upstream MCP Inspector (and any well-behaved client) fires `completion/complete` for every keystroke in any prompt-argument or resource-template-argument input.\n\nThe problem is that the Java server throws `-32602 \"AsyncCompletionSpecification not found\"` for any prompt or resource template that does not have its own matching `@McpComplete`. The Inspector shows this as a red error toast on every keystroke, which is pretty bad UX for what should be a silent \"no suggestions\" case.\n\nThe TypeScript and Python reference SDKs handle this gracefully, they just return an empty completion result. The Java SDK already returns an empty result in several sibling branches of the same handler (including the one fixed by #934). Only the final \"no spec registered for this ref\" branch still throws.\n\n**Environment**\n\n- `io.modelcontextprotocol.sdk:mcp-core` 0.18.2\n- Spring AI 1.1.7 with `spring-ai-starter-mcp-server-webmvc`\n- `org.springaicommunity:mcp-annotations` 0.9.0\n- Spring Boot 3.5.14, Java 17\n- Client: MCP Inspector 0.21.2, but any client that calls `completion/complete` on a partially-covered prompt reproduces it\n\nThe same throw site exists unchanged in every released version I checked: `v0.18.2`, `1.0.0-RC3`, `v1.1.0`, `v1.1.2`, `v1.1.3`, `v2.0.0 M3` and on `main`, atm no open PR/Issue currently with this problem\n\n**Steps to reproduce**\n\nThe bug lives in the server classes, not in the transports. The same `if (specification == null) { return Mono.error(...) }` block exists in two places:\n- `McpAsyncServer.completionCompleteRequestHandler()` used by all stateful transports (Streamable HTTP, SSE, stdio)\n- `McpStatelessAsyncServer.completionCompleteRequestHandler()` used by the stateless HTTP transport\n\n`McpSyncServer` and `McpStatelessSyncServer` are thin wrappers over the async counterparts and inherit the same behavior. Reproduced the `-32602` on **Streamable HTTP**, **SSE**, and **stateless HTTP**.\n\n1. Build a Spring AI MCP server with two prompts, where only one of them has an `@McpComplete` handler. The presence of any `@McpComplete` is enough to enable the `completions` capability for the whole server.\n2. Connect the MCP Inspector and open the prompt that has no completion handler.\n3. Type anything in one of its argument fields.\n\nThe server responds:\n\n```json\n{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 42,\n  \"error\": {\n    \"code\": -32602,\n    \"message\": \"AsyncCompletionSpecification not found: PromptReference[type=ref/prompt, name=greeting, title=null]\"\n  }\n}\n```\n\nThe Inspector renders this as a red error toast on every keystroke.\n\u003cimg width=\"1908\" height=\"946\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/410bfb65-2955-4fe5-9326-115ad624115f\" /\u003e\n\n**Expected behavior**\n\nA well-formed `completion/complete` request for a ref that has no registered handler should return an empty result:\n\n```json\n{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 42,\n  \"result\": {\n    \"completion\": {\n      \"values\": [],\n      \"total\": 0,\n      \"hasMore\": false\n    }\n  }\n}\n```\n\nThe client UI then shows \"no suggestions\" silently, which is what users see when they talk to a TypeScript or Python MCP server.\n\nThe current strict throw is still appropriate when the ref itself is malformed, unknown prompt name, missing resource template, or an argument that is not actually a template variable. Those cases are already handled and should stay as they are.\n\n**Minimal Complete Reproducible example**\n\n```java\n@SpringBootApplication\npublic class DemoApplication {\n    public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); }\n\n    @Component\n    public static class Prompts {\n\n        // covered by a completion handler\n        @McpPrompt(name = \"covered\", description = \"Prompt with completion\")\n        public GetPromptResult covered(@McpArg(name = \"topic\", required = true) String topic) {\n            return new GetPromptResult(\"\", List.of(new PromptMessage(Role.USER, new TextContent(topic))));\n        }\n\n        @McpComplete(prompt = \"covered\")\n        public List\u003cString\u003e coveredTopic(String value) {\n            return List.of(\"alpha\", \"beta\", \"gamma\");\n        }\n\n        // no @McpComplete completion/complete on its argument throws\n        @McpPrompt(name = \"uncovered\", description = \"Prompt with no completion handler\")\n        public GetPromptResult uncovered(@McpArg(name = \"name\", required = true) String name) {\n            return new GetPromptResult(\"\", List.of(new PromptMessage(Role.USER, new TextContent(\"Hi \" + name))));\n        }\n    }\n}\n```\n\n```yaml\nspring:\n  ai:\n    mcp:\n      server:\n        protocol: STREAMABLE\n        streamable-http:\n          mcp-endpoint: /mcp\n```\n\nAfter `initialize` + `notifications/initialized`:\n\n```bash\ncurl -H \"Accept: application/json, text/event-stream\" \\\n     -H \"Content-Type: application/json\" \\\n     -H \"mcp-session-id: \u003csession\u003e\" \\\n     -X POST http://localhost:8080/mcp \\\n     -d '{\n       \"jsonrpc\":\"2.0\",\"id\":42,\"method\":\"completion/complete\",\n       \"params\":{\n         \"ref\":{\"type\":\"ref/prompt\",\"name\":\"uncovered\"},\n         \"argument\":{\"name\":\"name\",\"value\":\"A\"}\n       }\n     }'\n```\n\nThe server returns the `-32602` error shown above. Expected: an empty completion result.\n\n**How the other SDKs handle this**\n\nIn the TypeScript SDK, [`handlePromptCompletion`](https://github.com/modelcontextprotocol/typescript-sdk/blob/e12cbd7078db388152f6e839abdbe09ba01f3f32/src/server/mcp.ts#L431-L457) only throws when the prompt name itself is unknown or the prompt is disabled. If the prompt has no `argsSchema`, no `completable()` field, or no completer function, it returns an empty result.\n\nThe Python SDK does it through a single decorator-style [handler](https://github.com/modelcontextprotocol/python-sdk/blob/62137874ff26dd74d2fea80ff528a7fd9ca7a5e7/src/mcp/server/lowlevel/server.py#L610-L638), when the user-provided function returns `None`, the SDK wraps it as `Completion(values=[], total=None, hasMore=None)`.\n\nThe Java SDK already does the same in several places inside `completionCompleteRequestHandler`. The constant `EMPTY_COMPLETION_RESULT` is used for missing argument names and for fixed (non-template) resource URIs. The TS-style comment in the resource branch (\"not an error in the spec (but probably should be)\") is even copied verbatim into the Java file. So the intent is clearly aligned with the other SDKs, only this one branch was left strict.\n\n**Propose fix**\n\nChange in both `McpAsyncServer.java` and `McpStatelessAsyncServer.java`, [`completionCompleteRequestHandler()`](https://github.com/modelcontextprotocol/java-sdk/blob/304650c5a0df3a4be0536bf9eb5bfa3728632823/mcp-core/src/main/java/io/modelcontextprotocol/server/McpAsyncServer.java#L919-L1020) [`completionCompleteRequestHandler()`](https://github.com/modelcontextprotocol/java-sdk/blob/304650c5a0df3a4be0536bf9eb5bfa3728632823/mcp-core/src/main/java/io/modelcontextprotocol/server/McpStatelessAsyncServer.java#L704-L803) methods:\n\n```diff\n- if (specification == null) {\n-     return Mono.error(McpError.builder(ErrorCodes.INVALID_PARAMS)\n-         .message(\"AsyncCompletionSpecification not found: \" + request.ref())\n-         .build());\n- }\n+ if (specification == null) {\n+     logger.debug(\"No completion specification for ref: {}\", request.ref());\n+     return EMPTY_COMPLETION_RESULT;\n+ }\n```\n\nReady to discuss and open PR\n\n**Related**\n\n- #784 same pattern\n- #932 / PR #934 the recent fix for problem like this","author":{"url":"https://github.com/a-simeshin","@type":"Person","name":"a-simeshin"},"datePublished":"2026-05-30T10:36:57.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/991/java-sdk/issues/991"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:ed0cb3bc-a07d-66ee-fdb1-f99870caff4d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBD16:17723D:3C1992:4EB57B:6A5B26EC
html-safe-nonce0f799675821385d90d71fedfc79ffa3cfe8cd021490de39eca2a4121382893a0
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCRDE2OjE3NzIzRDozQzE5OTI6NEVCNTdCOjZBNUIyNkVDIiwidmlzaXRvcl9pZCI6IjY4MjE0MTQ4MDM4NzE1NzM3NDAiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac9cfbc57dc877c7886909a53b912eff3b8088bdc698b8a89e2d0e49f30a35b4df
hovercard-subject-tagissue:4554126300
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/modelcontextprotocol/java-sdk/991/issue_layout
twitter:imagehttps://opengraph.githubassets.com/2642acdc2e7c2bc0ac77ea9aa9165487c81b64b47c21eb596244b5842b1726c8/modelcontextprotocol/java-sdk/issues/991
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/2642acdc2e7c2bc0ac77ea9aa9165487c81b64b47c21eb596244b5842b1726c8/modelcontextprotocol/java-sdk/issues/991
og:image:altBug description When a prompt has at least one @McpComplete handler registered somewhere in the server, the completions capability gets enabled globally. After that, the upstream MCP Inspector (and...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamea-simeshin
hostnamegithub.com
expected-hostnamegithub.com
None5290d7e14309ad1e76106a9c4237bd1041517e83ea182c8ab756752cb0c6940b
turbo-cache-controlno-preview
go-importgithub.com/modelcontextprotocol/java-sdk git https://github.com/modelcontextprotocol/java-sdk.git
octolytics-dimension-user_id182288589
octolytics-dimension-user_loginmodelcontextprotocol
octolytics-dimension-repository_id919609219
octolytics-dimension-repository_nwomodelcontextprotocol/java-sdk
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id919609219
octolytics-dimension-repository_network_root_nwomodelcontextprotocol/java-sdk
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
release9c975978430e9ad293956f2bbdaf153b1bd84a99
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/modelcontextprotocol/java-sdk/issues/991#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fjava-sdk%2Fissues%2F991
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
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%2Fmodelcontextprotocol%2Fjava-sdk%2Fissues%2F991
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=modelcontextprotocol%2Fjava-sdk
Reloadhttps://github.com/modelcontextprotocol/java-sdk/issues/991
Reloadhttps://github.com/modelcontextprotocol/java-sdk/issues/991
Reloadhttps://github.com/modelcontextprotocol/java-sdk/issues/991
Please reload this pagehttps://github.com/modelcontextprotocol/java-sdk/issues/991
modelcontextprotocol https://github.com/modelcontextprotocol
java-sdkhttps://github.com/modelcontextprotocol/java-sdk
Notifications https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fjava-sdk
Fork 978 https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fjava-sdk
Star 3.6k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fjava-sdk
Code https://github.com/modelcontextprotocol/java-sdk
Issues 133 https://github.com/modelcontextprotocol/java-sdk/issues
Pull requests 147 https://github.com/modelcontextprotocol/java-sdk/pulls
Discussions https://github.com/modelcontextprotocol/java-sdk/discussions
Actions https://github.com/modelcontextprotocol/java-sdk/actions
Projects https://github.com/modelcontextprotocol/java-sdk/projects
Models https://github.com/modelcontextprotocol/java-sdk/models
Security and quality 2 https://github.com/modelcontextprotocol/java-sdk/security
Insights https://github.com/modelcontextprotocol/java-sdk/pulse
Code https://github.com/modelcontextprotocol/java-sdk
Issues https://github.com/modelcontextprotocol/java-sdk/issues
Pull requests https://github.com/modelcontextprotocol/java-sdk/pulls
Discussions https://github.com/modelcontextprotocol/java-sdk/discussions
Actions https://github.com/modelcontextprotocol/java-sdk/actions
Projects https://github.com/modelcontextprotocol/java-sdk/projects
Models https://github.com/modelcontextprotocol/java-sdk/models
Security and quality https://github.com/modelcontextprotocol/java-sdk/security
Insights https://github.com/modelcontextprotocol/java-sdk/pulse
Bughttps://github.com/modelcontextprotocol/java-sdk/issues?q=type:"Bug"
#996https://github.com/modelcontextprotocol/java-sdk/pull/996
completion/complete should return EMPTY_COMPLETION_RESULT when no handler registeredhttps://github.com/modelcontextprotocol/java-sdk/issues/991#top
#996https://github.com/modelcontextprotocol/java-sdk/pull/996
https://github.com/Kehrlann
P2Moderate issues affecting some users, edge cases, potentially valuable featurehttps://github.com/modelcontextprotocol/java-sdk/issues?q=state%3Aopen%20label%3A%22P2%22
area/serverhttps://github.com/modelcontextprotocol/java-sdk/issues?q=state%3Aopen%20label%3A%22area%2Fserver%22
bugSomething isn't workinghttps://github.com/modelcontextprotocol/java-sdk/issues?q=state%3Aopen%20label%3A%22bug%22
2.0.1https://github.com/modelcontextprotocol/java-sdk/milestone/32
https://github.com/a-simeshin
a-simeshinhttps://github.com/a-simeshin
on May 30, 2026https://github.com/modelcontextprotocol/java-sdk/issues/991#issue-4554126300
#934https://github.com/modelcontextprotocol/java-sdk/pull/934
https://private-user-images.githubusercontent.com/89605031/600478777-410bfb65-2955-4fe5-9326-115ad624115f.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODQzNTg5MzcsIm5iZiI6MTc4NDM1ODYzNywicGF0aCI6Ii84OTYwNTAzMS82MDA0Nzg3NzctNDEwYmZiNjUtMjk1NS00ZmU1LTkzMjYtMTE1YWQ2MjQxMTVmLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzE4VDA3MTAzN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTg4NWEzODc4ZDBjMmRhN2FiZjdhZmEwYjcwNTBlZjhjZjUxMjc2ZTg1N2EyOTkwNDQ0OWJiZGRiYjQxODAzZDAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.O1oZ_U_a-eoqNQUEwvGaKfFSmnaPlptTKsLBNow3ykc
handlePromptCompletionhttps://github.com/modelcontextprotocol/typescript-sdk/blob/e12cbd7078db388152f6e839abdbe09ba01f3f32/src/server/mcp.ts#L431-L457
handlerhttps://github.com/modelcontextprotocol/python-sdk/blob/62137874ff26dd74d2fea80ff528a7fd9ca7a5e7/src/mcp/server/lowlevel/server.py#L610-L638
completionCompleteRequestHandler()https://github.com/modelcontextprotocol/java-sdk/blob/304650c5a0df3a4be0536bf9eb5bfa3728632823/mcp-core/src/main/java/io/modelcontextprotocol/server/McpAsyncServer.java#L919-L1020
completionCompleteRequestHandler()https://github.com/modelcontextprotocol/java-sdk/blob/304650c5a0df3a4be0536bf9eb5bfa3728632823/mcp-core/src/main/java/io/modelcontextprotocol/server/McpStatelessAsyncServer.java#L704-L803
Stateless server handler throws exception instead of returning JSON-RPC -32601 (Method not found) for not registered capabilities #784https://github.com/modelcontextprotocol/java-sdk/issues/784
NullPointerException in completion handler when Prompt has null arguments #932https://github.com/modelcontextprotocol/java-sdk/issues/932
fix: Return empty prompt completion result when prompt has no arguments #934https://github.com/modelcontextprotocol/java-sdk/pull/934
Kehrlannhttps://github.com/Kehrlann
P2Moderate issues affecting some users, edge cases, potentially valuable featurehttps://github.com/modelcontextprotocol/java-sdk/issues?q=state%3Aopen%20label%3A%22P2%22
area/serverhttps://github.com/modelcontextprotocol/java-sdk/issues?q=state%3Aopen%20label%3A%22area%2Fserver%22
bugSomething isn't workinghttps://github.com/modelcontextprotocol/java-sdk/issues?q=state%3Aopen%20label%3A%22bug%22
Bughttps://github.com/modelcontextprotocol/java-sdk/issues?q=type:"Bug"
2.0.1No due datehttps://github.com/modelcontextprotocol/java-sdk/milestone/32
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.