
GitHub - Protocol-Lattice/grpc_graphql_gateway: A protoc plugin that generates GraphQL execution code from Protocol Buffers
Take a look at this rust protoc plugin, there is lots of features to use 😁.

Take a look at this rust protoc plugin, there is lots of features to use 😁.
Hi, some time ago I've created simple golang interview preparation repository.
https://github.com/Protocol-Lattice/golang-interview-prep-in-english
It got 336 stars on GitHub, now I've changed it a bit.
Sincerly, Kamil.
Quick context for anyone who missed it: Cloudflare made the case a while back that "function calling" is the wrong abstraction for tool-heavy LLM workloads. When a model needs to chain tools, you get this absurd round-trip dance: call one tool, read the result back into context, call another, read it back, repeat. Every hop burns tokens and pollutes the context window. Their pitch was simple: stop calling tools one at a time. Let the model write a small program, and expose the tools as functions inside that program.
Made too much sense to ignore. So I built it for Go + MCP.
Repo: https://github.com/Protocol-Lattice/codemode
It sits on top of mark3labs/mcp-go (the de facto Go MCP SDK) and uses Yaegi as a sandboxed Go interpreter to actually execute the generated snippets. The snippet runs inside an injected codemode helper that exposes the MCP toolset.
There's also a higher-level orchestrator (CodeModeMCP) that runs the full pipeline: