frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Apple Releases New Versions of iOS for Older iPhones

https://www.macrumors.com/2026/03/11/apple-ios-16-7-15-release/
1•mgh2•4m ago•0 comments

Add per-repo output language preference

1•nishiohiroshi•4m ago•0 comments

Feedback on a local-first MCP memory system for AI assistants?

https://github.com/ptobey/local-memory-mcp
1•ptobey•4m ago•1 comments

Does MAGA Want American Science to Win?

https://www.thenewatlantis.com/publications/does-maga-actually-want-american-science-to-win
1•SCEtoAux•4m ago•0 comments

Compare Claude 4.6 Opus and GPT-5.2 to Boost E-E-A-T Content Quality

https://searchfit.ai/blog/claude-4-6-opus-vs-gpt-5-2-for-eeat-content-accuracy-citations-hallucin...
1•kasaei•7m ago•0 comments

OpenClaw Meets Microsoft Agentic Identity [video]

https://www.youtube.com/watch?v=7uD2vyfBUUs
1•umangsehgal93•9m ago•0 comments

Live Stream Oscar Wilde Importance of Being Earnest

https://www.youtube.com/watch?v=obX-HGs-PS8
1•frm88•9m ago•1 comments

Lobsters Interview with Ngoldbaum

https://alexalejandre.com/programming/interview-with-ngoldbaum/
1•birdculture•12m ago•1 comments

Show HN: Homecastr - AI home price forecasts on a map

https://www.homecastr.com/app
1•dhardestylewis•13m ago•0 comments

Bokuchi: A lightweight, cross-platform Markdown editor built with Tauri

https://bokuchi.com/
1•nogajun•14m ago•0 comments

Trump class 'battleship' revives Navy's railgun project

https://www.twz.com/sea/navy-is-firing-its-railgun-again-after-abandoning-it-for-years
1•samizdis•14m ago•1 comments

Proof SDK: Editor, collab server, provenance model, and agent HTTP bridge

https://github.com/everyinc/proof-sdk
1•azhenley•16m ago•0 comments

What it will mean for the economy if the Strait of Hormuz stays closed

https://www.axios.com/2026/03/12/oil-prices-iran-strait-of-hormuz
1•toomuchtodo•16m ago•1 comments

How are people debugging multi-agent AI workflows in production?

https://www.agentsentinelai.com/
1•skhatter•17m ago•2 comments

Gotta have a permit to kayak and paddleboard In Oregon

https://twitter.com/JayinWashington/status/2032161546215047623
1•bilsbie•21m ago•0 comments

Show HN: Sergamon – I defined 3,700 font glyphs as plain-text pixel grids

https://github.com/sgmonda/sergamon
1•sgmonda•23m ago•1 comments

Show HN: AEF – Agents State Machine

https://github.com/mikemasam/aef-spec
1•mikemasam•23m ago•0 comments

Sidekiq in the Terminal

https://www.mikeperham.com/2026/03/10/sidekiq-in-the-terminal/
1•butterlesstoast•27m ago•0 comments

Crypto whale loses nearly $50M swapping USDT for AAVE

https://www.theblock.co/post/393466/crypto-whale-loses-nearly-50-million-swapping-usdt-for-aave
1•gdeglin•27m ago•0 comments

Data Science Weekly – Issue 642

https://datascienceweekly.substack.com/p/data-science-weekly-issue-642
1•sebg•29m ago•0 comments

Catching silent data loss using BigQuery's native ML and Write API

https://robertsahlin.substack.com/p/your-pipeline-succeeded-your-data
1•boxer_shorts•29m ago•1 comments

Portify: Generate a developer portfolio from your GitHub

https://www.portify.ca/
1•lucasadilla•29m ago•2 comments

A semantic history: How the term 'vibe coding' went from a tweet to prod

https://www.coderabbit.ai/blog/a-semantic-history-how-the-term-vibe-coding-went-from-a-tweet-to-prod
1•dmkravets•30m ago•0 comments

Crypto investor turns $50M into $36,000 in one botched move

https://www.coindesk.com/markets/2026/03/12/crypto-investor-turns-usd50-million-into-usd36-000-in...
1•scrlk•33m ago•2 comments

US carrying out rescue effort after military aircraft crash in Iraq

https://www.reuters.com/world/middle-east/us-carrying-out-rescue-effort-after-losing-aircraft-ira...
2•tartoran•33m ago•0 comments

Steve Yegge Wants You to Stop Looking at Your Code

https://www.oreilly.com/radar/steve-yegge-wants-you-to-stop-looking-at-your-code/
1•metadat•34m ago•0 comments

Anthropic and OpenAI just exposed SAST's structural blind spot with free tools

https://venturebeat.com/security/anthropic-openai-sast-reasoning-scanners-security-directors-guide
1•mooreds•34m ago•0 comments

US fuel tanker aircraft crashes in Iraq – what we know and don't know

https://www.bbc.com/news/live/c4gqjyk0vx3t
3•tartoran•34m ago•0 comments

Before you let AI agents loose, you'd better know what they're capable of

https://thenewstack.io/risk-mitigation-agentic-ai/
1•chhum•38m ago•0 comments

To use your brain, first accept the Terms and Conditions

https://ctlj.colorado.edu/?p=1460
2•hhs•39m 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•9mo ago

Comments

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

Many come to HN also for the comments

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