Blog
Developer Experience Cleanup: One Way to Do Things
Wednesday, March 04, 2026 in News
Go Micro has always prioritized getting out of your way. But over time, the API accumulated multiple ways to do the same thing — micro.New(), micro.NewService(), service.New(), three different handler registration patterns. If you’re building …
Building the AI-Native Future of Go Micro with Claude
Wednesday, March 04, 2026 in News
Go Micro was recently given access to Claude Max through Anthropic’s open source sponsorship program. We wanted to share what we’ve built with it, why it matters, and where we’re headed. The Sponsorship Anthropic offers Claude Max …
Agents Meet Microservices: A Hands-On Demo
Wednesday, March 04, 2026 in News
We talk a lot about AI-native microservices. Time to show it. In this post we’ll build three services — projects, tasks, and team — and then hand them to an AI agent. The agent will create projects, assign tasks, and query team skills using …
What's New in Go Micro: v5.15.0
Wednesday, February 11, 2026 in Releases
Making Microservices AI-Native with MCP The Vision Imagine telling Claude: “Why is user 123’s order stuck?” Claude responds by: Calling your users service to check the account Calling your orders service to inspect the order Calling …
Making Microservices AI-Native with MCP
Wednesday, February 11, 2026 in News
We’re excited to announce MCP (Model Context Protocol) support in Go Micro v5.15.0 — making your microservices instantly accessible to AI tools like Claude. The Vision Imagine telling Claude: “Why is user 123’s order stuck?” …
What's New in Go Micro: v5.13.0
Tuesday, January 27, 2026 in Releases
The Problem Go Micro has always been great for building microservices: micro new myservice cd myservice micro run But getting those services to production? That was on you. You’d need to figure out Docker, Kubernetes, or write your own …
Introducing micro deploy
Tuesday, January 27, 2026 in News
We’re excited to announce micro deploy in Go Micro v5.13.0 — a simple way to deploy your services to any Linux server. The Problem Go Micro has always been great for building microservices: micro new myservice cd myservice micro run But …