frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Symbio

https://github.com/huyedits/Symbio/tree/main
1•huyedits•1m ago•0 comments

My 'Grill Me' Skill Went Viral

https://www.aihero.dev/my-grill-me-skill-has-gone-viral
2•jonathanlydall•7m ago•0 comments

Pebble provides a positive update but I still wouldn't recommend buying one

https://ljpuk.net/posts/pebble-provides-a-positive-update-but-i-still-wouldnt-recommend-buying-one
1•jllyhill•8m ago•0 comments

Why AI-Assisted Development Is More Exhausting Than It Should Be

https://tonyalicea.dev/blog/single-mode-burnout/
1•layer8•9m ago•0 comments

Validating LLM code edits when you can't run the code

https://velyr.io/blog/validating-llm-code-edits-without-running-the-code
1•flo_r•11m ago•0 comments

UBol-stripped – a less is more, super efficient, stripped version of uBol-lite

https://github.com/Kees1958/uBol-stripped
1•XzetaU8•12m ago•0 comments

How to Connect Claude to Stock Market Data via MCP

https://gist.github.com/financialdatanet/140133bf06b91c64f506b6aee8691c45
1•_FDN_•13m ago•0 comments

Calculate Real-Time Implied Volatility for Commodity Options

https://medium.com/@DolphinDB_Inc/how-we-built-a-real-time-implied-volatility-engine-for-commodit...
1•CrazyTomato•19m ago•0 comments

Belfort Releases Fastest Encrypted Image Classifer

https://belfortlabs.com/blog/sofar
1•furkanturan•20m ago•0 comments

Show HN: Deadwire-HTTPD A triple-threaded x86-64 assembly static server

https://github.com/Deadbytes101/DEADWIRE-HTTPD
2•lexsandra56•23m ago•0 comments

The Future of Developer Tools

https://blog.plan99.net/the-future-of-developer-tools-139cc351bd67
1•mike_hearn•23m ago•0 comments

I replaced 10 yrs of paying for Keyboard Maestro with a single Lua script

https://keyboardhardware.com/2026-07-17-kbm-replaced-by-1-lua-file/
2•genesishash•24m ago•0 comments

Show HN: Run all your sites SEO on autopilot

https://boldpilot.club
1•Utopyasz•26m ago•0 comments

JavaScript Sucks. Here's How to Build with Vite and Gleam

https://hendassa100k.github.io/posts/2026-07-11-gleam-and-vite/
2•TheWiggles•34m ago•0 comments

Five studies changing how I think about AI in software engineering

https://newsletter.getdx.com/p/five-studies-that-are-changing-how
1•perpetua•36m ago•0 comments

Starlink V3 Satalites

https://starlink.com/updates/starlink-version-3-satellites
1•jtraglia•37m ago•0 comments

Trump teleprompter aide made $100k betting on what Trump would say, reports say

https://arstechnica.com/culture/2026/07/trump-teleprompter-aide-made-100000-betting-on-what-trump...
3•rbanffy•40m ago•0 comments

The Tail End (2015)

https://waitbutwhy.com/2015/12/the-tail-end.html
1•tosh•42m ago•0 comments

We rebuilt our data warehouse on DuckDB over ClickHouse

https://posthog.com/blog/why-we-rebuilt-our-data-warehouse
1•tosh•47m ago•0 comments

Gemini 3.5 Pro delays due to coding performance, upgraded Flash model in testing

https://9to5google.com/2026/07/16/gemini-3-5-pro-delays/
1•couAUIA•51m ago•0 comments

Lucy edits videos in realtime, now with more capabilities and greater control

https://lucy.decart.ai/
1•eddieoz•54m ago•0 comments

'Food Is Medicine'

https://reasonstobecheerful.world/food-is-medicine-study/
2•fodmap•55m ago•0 comments

Ask HN: How long should I wait before being able to post?

2•ThierryRkt•56m ago•0 comments

Coding in space, AI-XR, and new interaction paradigms for devs

https://blog.jetbrains.com/research/2026/07/ai-and-xr-future/
1•katie_fraser•56m ago•0 comments

xAI can't deny Grok makes CSAM anymore. So it's suing users

https://arstechnica.com/tech-policy/2026/07/xai-cant-deny-grok-makes-csam-anymore-so-its-suing-us...
2•isaacfrond•58m ago•1 comments

Electric-steam locomotive

https://en.wikipedia.org/wiki/Electric%E2%80%93steam_locomotive
1•networked•1h ago•0 comments

Astronomers discover first atmosphere around a rocky Earth-like planet

https://www.space.com/astronomy/exoplanets/astronomers-discover-1st-atmosphere-around-a-rocky-ear...
1•isaacfrond•1h ago•0 comments

A structurally chunked, pre-embedded SQLite corpus of the EU AI Act

https://huggingface.co/datasets/faitholopade/aiact-openrag
1•olopadef•1h ago•0 comments

One link-click Google account takeover

https://weirdmachine64.github.io/research/google-oauth-device-code-hijacking.html
3•zx8080•1h ago•0 comments

Trump made $1.4B from crypto in one year. Is Justin Sun the man who helped him?

https://www.theguardian.com/technology/ng-interactive/2026/jul/16/justin-sun-trump-family-crypto
2•beardyw•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?