frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Kloak, A secret manager that keeps K8s workload away from secrets

https://getkloak.io/
41•neo2006•6h ago•35 comments

Show HN: A Karpathy-style LLM wiki your agents maintain (Markdown and Git)

https://github.com/nex-crm/wuphf
222•najmuzzaman•16h ago•103 comments

Show HN: I've built a nice home server OS

https://lightwhale.asklandd.dk/
169•Zta77•1d ago•71 comments

Show HN: Talisman – A Android instrument played with two thumbs

https://talisman.by-igor.com/
4•ycosynot•4h ago•2 comments

Show HN: Good AI Task – a tool for asking AI what it can and can't do

https://goodaitask.com
6•jmt710•4h ago•2 comments

Show HN: Browser Harness – Gives LLM freedom to complete any browser task

https://github.com/browser-use/browser-harness
117•gregpr07•1d ago•57 comments

Show HN: Useknockout open source background removal API 40× cheaper -remove.bg

https://github.com/useknockout/api
3•tlorents•5h ago•0 comments

Show HN: AI Visibility Monitor – Track if your site gets cited by GPT/Claude

https://github.com/WorkSmartAI-alt/ai-visibility-monitor
5•balance006•5h ago•0 comments

Show HN: Mapping Sonnet's thinking process via flame charts

https://adamsohn.com/lambda-variance/
3•dataviz1000•5h ago•0 comments

Show HN: A faster, drop-in replacement for Tailscale's DERP relay

https://hyper-derp.dev/blog/hyper-derp-announcement/
3•KRuskowski•5h ago•2 comments

Show HN: Gova – The declarative GUI framework for Go

https://github.com/NV404/gova
136•aliezsid•1d ago•27 comments

Show HN: I benchmarked how good LLMs are at proofreading English

https://github.com/reviseio/errata-bench
3•artursapek•6h ago•2 comments

Show HN: Honker – Postgres NOTIFY/LISTEN Semantics for SQLite

https://github.com/russellromney/honker
300•russellthehippo•2d ago•78 comments

Show HN: Quay – Menu-bar Git sync

https://code.sailorslog.io/quay
3•sailingcode•6h ago•0 comments

Show HN: Agent Vault – Open-source credential proxy and vault for agents

https://github.com/Infisical/agent-vault
150•dangtony98•3d ago•55 comments

Show HN: SVG Fitter – Rust+WASM Vectorizer

https://svg.axk.sh
3•xlii•8h ago•0 comments

Show HN: 1gbps Tokenizer written in Assembly. 20x faster than HuggingFace

https://github.com/dogmaticdev/SIMD-Tokenizer
3•dogmaticdev•8h ago•1 comments

Show HN: Tolaria – Open-source macOS app to manage Markdown knowledge bases

https://github.com/refactoringhq/tolaria
298•lucaronin•2d ago•138 comments

Show HN: Odozi – open-source iOS journaling app

https://odozi.app
5•jlarks32•9h ago•0 comments

Show HN: Duckville, a persistent-world life SIM where you're a duck

https://duckville.town
3•stfurkan•10h ago•0 comments

Show HN: Agent MCP Studio – build multi-agent MCP systems in a browser tab

https://www.agentmcp.studio
11•stealthtsdb•18h ago•3 comments

Show HN: SherifDB, a databe written in Golang under 500 LOC

https://emmanuel326.github.io/blogs/sheriffdb.html
3•Nya-kundi•10h ago•2 comments

Show HN: WhiskeySour – A 10x faster drop-in replacement for BeautifulSoup

7•ayas_behera•10h ago•1 comments

Show HN: VT Code – Rust TUI coding agent with multi-provider support

https://github.com/vinhnx/VTCode
14•vinhnx•21h ago•2 comments

Show HN: Nimbus – Browser with Claude Code UX

https://usenimbus.app/
17•pycassa•1d ago•3 comments

Show HN: HNswered – watches for replies to your Hacker News posts and comments

https://github.com/adam-s/HNswered
21•dataviz1000•1d ago•24 comments

Show HN: Xtrace – Unix-Style macOS Profiling for Instruments (CPU/GPU/Memory)

https://github.com/Kr1sso/xtrace-skill
2•Krisso•15h ago•0 comments

Show HN: Broccoli, one shot coding agent on the cloud

https://github.com/besimple-oss/broccoli
81•yzhong94•3d ago•49 comments

Show HN: GoModel – an open-source AI gateway in Go

https://github.com/ENTERPILOT/GOModel/
213•santiago-pl•4d ago•75 comments

Show HN: Kaniop – Kubernetes Operator for Kanidm

https://github.com/pando85/kaniop
4•pando85•15h ago•1 comments
Open in hackernews

Show HN: The Ultimate MCP Client

https://github.com/Dicklesworthstone/ultimate_mcp_client
7•eigenvalue•1y ago
Over the past couple weeks, l've been really immersed in learning about MCP, a new protocol for equipping any LLM with a set of tools that can run on your own machine or a remote server you control and give all kinds of superpowers to Al agents to do things like search, etc.

As part of that research, l've already built one very fleshed-out and useful MCP server that l've shared here (I've added much more to it recently though!), the LLM Gateway MCP Server, which lets you use a big model to delegate to a cheaper model (and many more things in addition to that, like running automated multi-round LLM Tournaments, which I also posted about recently on X).

To actually use these MCP servers though, you need an MCP client. Most people seem to be using the Claude Desktop app. I tried this and got it to work just fine, but it was a bit annoying to set up and there were lots of things I didn't like about it. I wanted something better.

So two days ago I began work on what I call the Ultimate MCP Client. After ~24 hours of work, it's working and ready and I'm really proud of how amazingly well it turned out. This is going to be a workhorse tool for me personally.

It's pure python and all in a single large .py file which can be deployed as a self-contained uv script if you want. It offers all kinds of features and very rich console output for use interactively in a terminal, along with a CLI. But it can also be used in the background.

That kind of background functionality, orchestrating and coordinating several MCP servers nicely, is how I mostly intend on using it. But once I saw how nice the interactive terminal experience was, I realized that I could slap a FastAPl server on top of it and make a web GUl.

Because I hate unneeded complexity so much, I made the WebGUl a single self-contained HTML file you can just open in your browser (similar to my Your-Source-to-Prompt tool), and it looks awesome using Alpine and Daisy and other nice Ul libraries, all loaded via CDN.

Comments

eigenvalue•1y ago
I’ve made tons of improvements to this just in the past day. I thinks it’s already the most feature packed and nice looking MCP client out there now.