Life & fun · February 25, 2026
ContextVM – Running MCP over Nostr
Hi HN, I'm Gzuuus, the creator of ContextVM this is my first post here, hope you find it interesting! I started building ContextVM some months ago, this is an open protocol that runs the Model Context Protocol (MCP) over Nostr. In practice, it’s a transport for MCP that lets you expose remote servers without needing a domain, inbound ports, or OAuth, clients, and servers only need an outbound internet connection. The problem I ran into: When deploying a remote MCP server you can feel the pain. You usually need a domain name, a static IP, TLS certificates, port forwarding, and some way to…
What it does
In the maker’s words, at launch
Hi HN, I'm Gzuuus, the creator of ContextVM this is my first post here, hope you find it interesting! I started building ContextVM some months ago, this is an open protocol that runs the Model Context Protocol (MCP) over Nostr. In practice, it’s a transport for MCP that lets you expose remote servers without needing a domain, inbound ports, or OAuth, clients, and servers only need an outbound internet connection. The problem I ran into: When deploying a remote MCP server you can feel the pain. You usually need a domain name, a static IP, TLS certificates, port forwarding, and some way to auth (often OAuth). That friction makes it hard to spin up a service on your laptop or a Raspberry Pi and expose it safely. ContextVM solves this at the transport layer. It replaces HTTP/SSE with Nostr relays that act like a distributed, stateless message bus: Identity/auth: public keys instead of OAuth. Network/transport: clients and servers only need outbound connection to relays, so you can run behind NAT or a strict firewall. Security: client↔server traffic is end-to-end encrypted; relays just route encrypted events blindly. Addressing/discovery: servers (and clients) are addressable by public key, no domains required. Servers can be announced on relays instead of central registries. Private servers can skip announcements entirely, clients connect if they know the server’s public key. Payments: Recently we included a payment method agnostic specification defining the lifecycle of payments, this is CEP-8 https://docs.contextvm.org/spec/ceps/cep-8/ The best part, you don’t need to rewrite your existing MCP servers: - `cvmi`: a CLI to expose any local HTTP/Stdio MCP server over ContextVM. For example, `npx cvmi serve -- npx -y @modelcontextprotocol/server-filesystem /tmp` - `ctxcn`: inspired by `shadcn/ui`. It connects to a server, reads its MCP schema, and generates a type-safe TypeScript client into your codebase. - TypeScript SDK: for those who want to build natively on the protocol. - Project site: It works as a tool for discovery, and debugging, you can run your server locally and connect through the site We'd love feedback, questions, or critiques. If you want to dig deeper, you can visit the project page for a blog, read the docs, or just build something. It's all open source, permissionless, and fun! We are also publishing a bi-weekly newsletter on substack: https://contextvm.substack.com/ Code: https://github.com/contextvm Project site: https://contextvm.org Docs: https://docs.contextvm.org
Does the same job
all alternatives →

Whisper Internet Infra AI ContextMay 2026 · ▲95Free MCP for security AI: live BGP, DNS, threat graph
- OMOpenMemory – Make your MCP clients more context-aware2025 · github.com · ▲8
Hey HN, we’re launching OpenMemory (https://github.com/mem0ai/mem0/tree/main/openmemory), an open source tool that lets you run a personal, portable memory layer for LLMs. Fully self-hosted and under your control. It uses standard MCP protocol and plugs into any MCP client (like Cursor, Windsurf, Claude, etc.) over Server-Sent Events (SSE). https://mem0.ai/blog/how-to-make-your-clients-more-context-a... is a complete tutorial that shows how to set it up locally, the underlying components involved, complete overview of architecture and…
- OSOpen-Source Notion MCP Server (TypeScript, SSE, Apify)Dec 2025 · github.com · ▲9
Hello HN, I built this because I wanted to give Claude Desktop access to my Notion workspace without running a flaky local Python script via stdio. This is a Node.js/Express implementation of the Model Context Protocol (MCP) that uses SSE (Server-Sent Events) for transport. It’s designed to be stateless and deployable as a container (I'm hosting it on Apify, but it works anywhere with Node). The Stack: TypeScript + Express @modelcontextprotocol/sdk Zod for input validation Bearer Auth for security (since it exposes an HTTP endpoint) Capabilities: It allows the LLM to search pages,…
- OSOpen-source project to convert FastAPIs to MCP servers2025 · github.com · ▲7
I built a zero-configuration tool for automatically exposing FastAPI endpoints as Model Context Protocol (MCP) tools, open to collabs and contributions!
More life & fun this month
the category →- TL
Life & fun · 10d ago · louisabraham.github.io

Photosynthesis fires two of your iPhone
Life & fun · 28d ago · photosynthesis.camera
SoloUno▲310Take control of hair pulling, nail biting & skin picking
Life & fun · 28d ago · solouno.io

Scroll through all 43,252,003,274,489,856,000 reachable Rubik's Cube permutations.
Life & fun · 26d ago · everycube.alen.is


Hi HN, I built Eigendrum, a web tool that solves the 2D wave equation for arbitrary shapes so you can hear what they sound like as drums. How it works: * Solves -∇²u = λu using finite element analysis (Kφ = λMφ) on a triangle mesh. * Validated to <0.1% error against closed-form solutions for circles (Bessel zeros) and rectangles. * Sound model factors in strike location, Rayleigh damping, and mallet width. * Includes Kac drums I & II to demonstrate identical sound spectra from different geometries. * No frameworks, build steps, or dependencies. Repo and tests:…
Life & fun · 26d ago · baselashraf81.github.io