MCP browser sign-in now redirects to 127.0.0.1, fixing failures on IPv6-only localhost setups.
What's wrong with this entry?
When an MCP server signs you in through your browser, the local address it redirects back to is now http://127.0.0.1 rather than http://localhost. This fixes sign-in on machines where localhost resolves to the IPv6 address ::1 and nothing is listening there.
- Servers you have already signed into keep working: the check that reuses a previously registered redirect address now accepts either origin, where it used to demand
http://localhostexactly. - The port is still chosen at runtime and filled into the address.
t === "http://127.0.0.1" || t === "http://localhost"
Strings lifted out of the shipped bundle, so the claim above can be checked against them.