frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built a sub-500ms latency voice agent from scratch

https://www.ntik.me/posts/voice-agent
330•nicktikhonov•9h ago•97 comments

Show HN: Govbase – Follow a bill from source text to news bias to social posts

https://govbase.com
184•foxfoxx•13h ago•74 comments

Show HN: Trade Stocks and Crypto On-Chain with Full Transparency

https://www.aulico.com
2•rendernos•1h ago•0 comments

Show HN: Pianoterm – Run shell commands from your Piano. A Linux CLI tool

https://github.com/vustagc/pianoterm
50•vustagc•10h ago•16 comments

Show HN: Visual Lambda Calculus – a thesis project (2008) revived for the web

https://github.com/bntre/visual-lambda
41•bntr•3d ago•5 comments

Show HN: uBlock filter list to blur all Instagram Reels

https://gist.github.com/shraiwi/009c652da6ce8c99a6e1e0c86fe66886
111•shraiwi•11h ago•31 comments

Show HN: Giggles – A batteries-included React framework for TUIs

https://github.com/zion-off/giggles
14•ajz317•4h ago•7 comments

Show HN: Omni – Open-source workplace search and chat, built on Postgres

https://github.com/getomnico/omni
154•prvnsmpth•22h ago•42 comments

Show HN: PantheonOS–An Evolvable, Distributed Multi-Agent System for Science

https://pantheonos.stanford.edu/
2•PantheonOS•2h ago•0 comments

Show HN: Cortexa – Bloomberg terminal for agentic memory

https://cortexa.ink
7•PrateekRao01•2h ago•1 comments

Show HN: PHP 8 disable_functions bypass PoC

https://github.com/m0x41nos/TimeAfterFree
26•m0x41nos•5h ago•8 comments

Show HN: Starcraft2 replay rendering engine and AI coach

https://www.starcraft2.ai/en/replay/72228e2b-569e-440d-9fcc-93e4a1f5a4b9
4•tomkit•2h ago•0 comments

Show HN: Timber – Ollama for classical ML models, 336x faster than Python

https://github.com/kossisoroyce/timber
187•kossisoroyce•1d ago•32 comments

Show HN: Web Audio Studio – A Visual Debugger for Web Audio API Graphs

https://webaudio.studio/
63•alexgriss•19h ago•6 comments

Show HN: A Puzzle Game Based on Non-Commutative Operations

https://commutators.games
3•alius•3h ago•0 comments

Show HN: GitHub Commits Leaderboard

https://ghcommits.com
3•GustyCube•4h ago•0 comments

Show HN: Gapless.js – gapless web audio playback

https://github.com/RelistenNet/gapless.js
32•switz•12h ago•7 comments

Show HN: An Auditable Decision Engine for AI Systems

https://maelstrom.ghostlogic.tech
3•adamscottthomas•5h ago•0 comments

Show HN: Try Archetype 360 – AI‑powered personality test, 3× deeper than MBTI

https://archetype360.app/
9•ddesposito•15h ago•5 comments

Show HN: ApplyPilot – AI Agent that applies to jobs for you

https://github.com/Pickle-Pixel/ApplyPilot
3•pickle-pixel•6h ago•0 comments

Show HN: Punch card simulator and Fortran IV interpreter

https://punch.ehrlich.dev/
4•behrlich•12h ago•0 comments

Show HN: OctopusGarden – An autonomous software factory (specs in, code out)

https://github.com/foundatron/octopusgarden
6•foundatron•6h ago•5 comments

Show HN: OmniGlass – Executable AI screen snips with kernel-level sandboxing

https://github.com/goshtasb/OmniGlass
2•goshtasb•7h ago•0 comments

Show HN: Open-Source Postman for MCP

https://github.com/baristaGeek/open-source-postman-for-mcp
6•baristaGeek•7h ago•0 comments

Show HN: Writing App for Novelist

https://novelos.studio/
8•oknoorap•10h ago•4 comments

Show HN: We filed 99 patents for deterministic AI governance(Prior Art vs. RLHF)

2•genesalvatore•8h ago•0 comments

Show HN: Vanilla JavaScript refinery simulator built to explain job to my kids

3•fuelingcurious•9h ago•2 comments

Show HN: Agd – a content-addressed DAG for tracking what AI agents do

https://github.com/frontman-ai/agd
3•BlueHotDog2•9h ago•0 comments

Show HN: BoardMint – upload a PCB, get a standards-backed issue report in ~30s

https://boardmint.io/how-it-works
3•pranavchahal•10h ago•1 comments

Show HN: Ledge - Policy layer for AI agent payments (prevents unauthorized txns)

https://github.com/Devendra116/ledge
3•devendra116•14h ago•0 comments
Open in hackernews

Show HN: The Ultimate MCP Client

https://github.com/Dicklesworthstone/ultimate_mcp_client
7•eigenvalue•10mo 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•10mo 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.