Show HN: Declarative open-source framework for MCPs with search and execute
hyperterse.comHi HN,
I’m Samrith, creator of Hyperterse.
Today I’m launching Hyperterse 2.0, a schema-first framework for building MCP servers directly on top of your existing production databases.
If you're building AI agents in production, you’ve probably run into agents needing access to structured, reliable data but wiring your business logic to MCP tools is tedious. Most teams end up writing fragile glue code. Or worse, giving agents unsafe, overbroad access.
There isn’t a clean, principled way to expose just the right data surface to agents.
Hyperterse lets you define a schema over your data and automatically exposes secure, typed MCP tools for AI agents.
Think of it as: Your business data → controlled, agent-ready interface.
Some key properties include a schema-first access layer, typed MCP tool generation, works with existing Postgres, MySQL, MongoDB, Redis databases, fine-grained exposure of queries, built for production agent workloads.
v2.0 focuses heavily on MCP with first-class MCP server support, cleaner schema ergonomics, better type safety, faster tool surfaces.
All of this, with only two tools - search & execute - reducing token usage drastically.
Hyperterse is useful if you are building AI agents/copilots, adding LLM features to existing SaaS, trying to safely expose internal data to agents or are just tired of bespoke MCP glue layers.
I’d love feedback, especially from folks running agents in production.
GitHub: https://github.com/hyperterse/hyperterse I’m gonna build this into Ruby on Rails. I have lots of the code proven out already https://medium.com/zar-engineering/code-mode-mcp-ac17c2a1038... That’s awesome! I’d have loved to support multiple languages, but went with TypeScript since there’s already multiple solid sandboxing options available for Go. I think that the search and execute pattern shared by Cloudflare is really awesome. Used it for my Obsidian exposing all 100+ commands of the Obsidian CLI abd it works wonders. More MCP implementations should take that approach Agreed, I loved what Cloudflare introduced with Code Mode. I started building this before that was introduced, but that only validated this approach even more. Though, the primary difference is that with the search + execute method in Hyperterse, the agent never writes the code, but instead executes a tool it discovers by searching. You still expose only a controlled surface.