frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

BBC to axe Radio 4's The World Tonight after more than 50 years

https://www.theguardian.com/media/2026/jun/17/bbc-boss-compulsory-redundancies-cuts
2•mellosouls•1m ago•1 comments

YaFF – High-performance C++ serialization library

https://github.com/yandex/yaff
1•Hixon10•2m ago•0 comments

The Next Computing Revolution May Come from Stacking Chips Like Skyscrapers

https://scitechdaily.com/the-next-computing-revolution-may-come-from-stacking-chips-like-skyscrap...
1•g-b-r•5m ago•0 comments

'Most famous tree in the world': Sherwood Forest's 1000-year-old Major oak dies

https://www.theguardian.com/environment/2026/jun/18/most-famous-tree-world-sherwood-forest-ancien...
3•mellosouls•6m ago•0 comments

GLM-5.2 is probably the most powerful text-only open weights LLM

https://simonwillison.net/2026/Jun/17/glm-52/
1•lumpa•8m ago•0 comments

Simpler, older version of Stonehenge found three miles from famous site

https://www.bbc.co.uk/news/articles/clyxw8550y8o
2•mellosouls•11m ago•1 comments

Interesting Google AI Results

https://www.google.com/search?q=nvm
2•throwaway_7678•15m ago•1 comments

SteamOS Linux 3.8 released as stable

https://store.steampowered.com/news/app/1675200/view/697641379212298072
6•jrepinc•22m ago•0 comments

Privacy-Preserving Age Verification–and Its Limitations [pdf]

https://www.cs.columbia.edu/~smb/papers/age-verify.pdf
1•wmf•24m ago•0 comments

Trading Places (2023)

https://www.tabletmag.com/sections/news/articles/trading-places
1•like_any_other•25m ago•0 comments

EPFL launches the first open medical LLMs

https://actu.epfl.ch/news/epfl-launches-the-world-s-first-fully-open-medical/
1•ponsfrilus•26m ago•0 comments

Remote Code Execution in Libssh2

https://vuldb.com/cve/CVE-2026-55200
1•walrus01•30m ago•0 comments

FP8 GEMM Optimization on AMD CDNA4 Architecture

https://rocm.blogs.amd.com/software-tools-optimization/cdna4-gemm-kernels/README.html
1•skidrow•35m ago•0 comments

Occupancy Math on the AMD MI355X: A From-First-Principles Guide

https://indianspeedster.github.io/blog/occupancy-math-mi355x/
1•skidrow•36m ago•0 comments

Remembering Robert A.F. Thurman (1941-2026)

https://www.lionsroar.com/robert-thurman-and-the-karmic-kingdom-of-buddhology/
2•fredski42•38m ago•0 comments

What competitor signal has been most useful for you?

3•IndustryLens•42m ago•0 comments

Show HN: We cut >60% of tokens from agentic tasks by removing repeated context

https://parcle.ai/
1•longtermop•47m ago•0 comments

Nim Conf 2026 (Online, Sat June 20)

https://conf.nim-lang.org/
2•pietroppeter•48m ago•1 comments

Apple has started replacing macOS names with version numbers

https://9to5mac.com/2026/06/16/apple-has-started-replacing-macos-names-with-version-numbers-in-se...
2•soheilpro•48m ago•1 comments

Apple boss Tim Cook says prices to rise due to memory chip costs

https://www.bbc.com/news/articles/c3wyxvqdx1zo
6•ilreb•52m ago•0 comments

I built a budgeting app that never connects to your bank

https://budjo.app
2•fabiozanchi•56m ago•0 comments

AI Agents for Contractors

https://dolfyn.ai/
1•khollow•1h ago•1 comments

A 10K-star milestone for Diskless Kafka

https://github.com/AutoMQ/automq
7•TechSageWow•1h ago•1 comments

Specs AR Glasses (Snap Inc.)

https://www.specs.com/
2•d3ron•1h ago•0 comments

Electrocaloric effects across room temperature in multilayer capacitors

https://www.nature.com/articles/s41586-026-10492-w
1•teleforce•1h ago•0 comments

The year designers stopped being just designers – AI in Design Report 2026

https://www.artificialstudio.ai/blog/ai-design-report-2026
1•artificialstudi•1h ago•2 comments

Trump Demanded Iran's 'Unconditional Surrender.' He Got a Surprise Instead

https://www.nytimes.com/2026/06/17/us/politics/trump-iran-deal-nuclear-program-strait.html
10•duxup•1h ago•2 comments

Pentagon says Grok used to launch missiles at Iran

https://thehill.com/newsletters/technology/5929290-pentagon-grok-iran-missiles/
5•dlgeek•1h ago•0 comments

Companies question cost of AI as tokenmaxxing spending adds up

https://www.cbc.ca/news/business/ai-spending-ending-tokenmaxxing-tokenomics-9.7237680
2•theanonymousone•1h ago•1 comments

Gloat compiles Clojure and YAMLScript to Go code, native binaries and WASM

https://gloathub.org/
4•adityaathalye•1h 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•1y ago

Comments

nip•1y 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•1y 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•1y 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•1y 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•1y ago
This is an advertisement
tomrod•1y ago
I wish this were critical, but it is an ad for MCP.run.
nip•1y ago
It’s both in my opinion and discussions can stem from the linked article

Many come to HN also for the comments

palmfacehn•1y ago
Personally, I'm not a fan. I thought the proponent's view might stimulate a discussion.
FunnyLookinHat•1y 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•1y 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•1y 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•1y ago
This post has too many "shameless plugs" to be taken seriously.
smitty1e•1y 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?