frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Social media algorithms can alter political views, browser extension study shows

https://www.euronews.com/next/2025/11/28/social-media-algorithms-can-alter-political-views-browse...
1•geox•21s ago•0 comments

Ask HN: Why don't closed captions boldface words that are likely to be misheard?

1•amichail•47s ago•0 comments

Trump says he will cancel all Biden executive orders signed by autopen

https://www.theguardian.com/us-news/live/2025/nov/28/trump-washington-dc-shooting-politics-updates
1•vinni2•8m ago•0 comments

LX: A CLI tool for LaTeX notes management

https://github.com/kamal-hamza/lx-cli
1•hkamal233•9m ago•0 comments

Solving Polynomials Is Hard

https://youtu.be/9HIy5dJE-zQ
2•bane•10m ago•0 comments

Flights disrupted as Airbus requests modifications to planes

https://www.bbc.co.uk/news/articles/c8e9d13x2z7o
2•martinald•12m ago•0 comments

Best Black Friday Software Deals 2025 (Lifetime Deals and Product Bundles)

https://www.blackfridaydeals.directory/black-friday-software-deals-2025
2•bfdd•20m ago•0 comments

Video shows Israeli forces shooting Palestinians dead moments after surrender

https://www.theguardian.com/world/2025/nov/28/video-shows-israeli-forces-shooting-palestinians-de...
2•NomDePlum•20m ago•0 comments

The Day Anonymity Died: Inside the OpenReview / ICLR 2026 Leak

https://medium.com/@billxu_atoms/the-day-anonymity-died-inside-the-openreview-iclr-2026-leak-ee68...
1•luizcdc•21m ago•0 comments

FedEx joins list of billion-dollar companies laying off workers

https://www.dailymail.co.uk/yourmoney/article-15332637/fedex-layoffs-coppell-texas.html
2•Bender•22m ago•0 comments

Nerd-Sniped: Project Search

https://zed.dev/blog/nerd-sniped-project-search
1•andromedaM31•24m ago•0 comments

Search – The Moat of the Search Index

https://robonomics.substack.com/p/search-the-moat-of-the-search-index
1•gmays•26m ago•0 comments

What I've Been Reading

https://marginalrevolution.com/marginalrevolution/2025/11/what-ive-been-reading-280.html
1•paulpauper•26m ago•0 comments

'Worrying' virus resistant to body's defense system

https://www.dailymail.co.uk/health/article-15335177/bird-flu-virus-resistant-fever.html
2•Bender•26m ago•0 comments

'We Do Fail a Lot': Defense Startup Anduril Hits Setbacks with Weapons Tech

https://www.wsj.com/business/anduril-industries-defense-tech-problems-52b90cae
2•paulpauper•26m ago•0 comments

Addiction is not the right model for smartphones

https://www.nytimes.com/2025/11/28/opinion/internet-phones-social-media-addiction.html
1•paulpauper•26m ago•1 comments

Ransomware Attack Disrupts Local Emergency Alert System Across US

https://www.securityweek.com/ransomware-attack-disrupts-local-emergency-alert-system-across-us/
1•Bender•27m ago•0 comments

Airbus A320 Fly by wire corrupted by radiation in flight

https://viewfromthewing.com/airbus-a320s-could-be-temporarily-grounded-worldwide-for-software-upd...
16•JohannMac•28m ago•8 comments

Electron vs. Tauri

https://www.dolthub.com/blog/2025-11-13-electron-vs-tauri/
2•birdculture•28m ago•0 comments

Hacker News RAG Search

https://hn.fiodorov.es/
1•thunderbong•32m ago•0 comments

Show HN: Open-source AI Codemaps written in Rust

https://github.com/RohanAdwankar/oxdraw/discussions/39
1•RohanAdwankar•34m ago•0 comments

Good engineers write bad code at big companies

https://www.seangoedecke.com/bad-code-at-big-companies/
3•gfysfm•35m ago•0 comments

Why 'hold forever' investors are snapping up venture capital 'zombies'

https://techcrunch.com/2025/11/25/why-hold-forever-investors-are-snapping-up-venture-capital-zomb...
3•andrewstetsenko•36m ago•0 comments

Airbus grounds A320 aircraft amid solar radiation risk

https://aerospaceglobalnews.com/news/a320-grounding-radiation/
4•dboreham•36m ago•2 comments

The original ABC language, Python's predecessor (1991)

https://github.com/gvanrossum/abc-unix
8•tony•37m ago•0 comments

Decimal Is Sometimes Wrong

https://jt-hill.com/dropping-decimal/
4•jt-hill•38m ago•2 comments

Oura ring deal raises valid concerns about users' health data security

https://this.weekinsecurity.com/oura-ring-deal-raises-valid-concerns-about-users-health-data-secu...
1•mindracer•39m ago•0 comments

George Hotz: Replacing My MacBook

https://geohot.github.io//blog/jekyll/update/2025/11/28/replacing-my-macbook.html
13•__rito__•41m ago•2 comments

Everyone Is Invited to Jane Austen's Birthday Party

https://www.nytimes.com/2025/11/26/books/jane-austen-birthday.html
2•bryanrasmussen•46m ago•0 comments

TermoSlack – A Terminal Based Slack Client

2•adhyys•48m ago•0 comments
Open in hackernews

A Critical Look at "A Critical Look at MCP."

https://docs.mcp.run/blog/2025/05/16/mcp-implenda-est/
33•palmfacehn•6mo ago

Comments

nip•6mo ago
> Further, one of the issues with remote servers is tenancy

Excellent write-up and understanding of the current state of MCP

I’ve been waiting for someone to point it out. This is in my opinion the biggest limitation of the current spec.

What is needed is a tool invocation context that is provided at tool invocation time.

Such tool invocation context allows passing information that would allow authorizing, authentication but also tracing the original “requester”: think of it as “tool invoked on behalf of user identity”

This of course implies an upstream authnz that feeds these details and more.

If you’re interested in this topic, my email is in my bio: I’m of the architect of our multi-tenant tool calling implementation that we’ve been running in production for the past year with enterprise customers where authnz and auditability are key requirements.

jensneuse•6mo ago
The way we've solved this in our MCP gateway (OSS) is that the user first needs to authenticate against our gateway, e.g. by creating a valid JWT with their identity provider, which will be validated using JWKS. Now when they use a tool, they must send their JWT, so the LLM always acts in their behalf. This supports multiple tenants out of the box. (https://wundergraph.com/mcp-gateway)
Yoric•6mo ago
Is this really hard to code?

I mean, converting a tool-less LLM into a tool-using LLM is a few hundred lines of code, and then you can plug all your tools, with whichever context you want.

nip•6mo ago
Indeed very easy to code!

My point is about the need for a spec of this mechanism: without a spec, every company / org will roll out their own and result in 500 flavors of the same concept.

That’s where MCP shines: tool calling and tool discovery is already 1.5 years old (an eternity in ai land).

The MCP spec ensures that we can all focus on solving problems with tool calling rather than wasting time in cobbling together services that re not interoperable (because developed without a common spec / standard)

__loam•6mo ago
This is an advertisement
tomrod•6mo ago
I wish this were critical, but it is an ad for MCP.run.
nip•6mo ago
It’s both in my opinion and discussions can stem from the linked article

Many come to HN also for the comments

palmfacehn•6mo ago
Personally, I'm not a fan. I thought the proponent's view might stimulate a discussion.
FunnyLookinHat•6mo ago
> Server authors working on large systems likely already have an OAuth 2.0 API.

I think this biases towards sufficiently large engineering organizations where OAuth 2.0 was identified as necessary for some part of their requirements. In most organizations, they're still using `x-<orgname>-token` headers and the like to do auth.

I'm not sure that there's a better / easier way to do Auth with this use case, but it does present a signficant hurdle to adoption for those who have an API (even one ready for JSON-RPC!) that is practically ready to be exposed via MCP.

motorest•6mo ago
> I think this biases towards sufficiently large engineering organizations where OAuth 2.0 was identified as necessary for some part of their requirements. In most organizations, they're still using `x-<orgname>-token` headers and the like to do auth.

I don't think that's it. Auth is a critical system in any organization, and larger organizations actually present more resistance to change, particularly in business critical areas. If anything, smaller orgs gave an easier time migrating critical systems such as authentication.

hirsin•6mo ago
Touching on tenancy and the "real" gaps in the spec does help push the discussion in a useful direction.

https://vulnerablemcp.info/ is a good collection of the immediately obvious issues with the MCP protocol that need to be addressed. A couple low blows in there, that feel a bit motivated to make MCP look worse, but generally a good starting point overall.

owebmaster•6mo ago
This post has too many "shameless plugs" to be taken seriously.
smitty1e•6mo ago
Serious question:

If doing an extended, service-level session (like a GPT interaction) with a server known beforehand, would it make sense to set up a keypair and manage the interaction over SSH?

Restated: are we throwing away a lot of bandwidth establishing TLS trust for the more general HTTP?