Add simple login webpage with web server command #779
+256
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR implements a simple login webpage as requested in the issue. The implementation adds a new
web
subcommand to the GitHub MCP Server that serves a clean, responsive login page with username and password fields.Features
web
command: Start a web server with./github-mcp-server web --port 8080
ReadHeaderTimeout
to prevent Slowloris attacksImplementation Details
The implementation leverages existing dependencies:
gorilla/mux
(already in go.mod) for HTTP routingUsage
Screenshots
Login Page:

Form Submission Result:

Note
This is a UI-only implementation as requested in the issue. No backend authentication logic is included - this provides the foundation for future authentication features. The form submission currently echoes back the username for demonstration purposes, making it clear this is a mockup interface.
Fixes #778.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.