News
Tools as Services: Why Go Micro Was Always Ready for AI
Saturday, May 30, 2026 in News
When people see micro chat or the MCP gateway, they assume we built something new. We didn’t. We exposed something that was already there. Go Micro has always treated services as self-describing, addressable units. Every service registers its …
Build Your Own AI Agent CLI in 150 Lines
Saturday, May 30, 2026 in News
We introduced micro chat — a CLI that lets you talk to your microservices through an LLM. People asked how it works under the hood. The honest answer: it’s about 150 lines, and there’s no magic. This post walks through every piece so you …
micro chat: Talk to Your Services
Friday, May 29, 2026 in News
We built micro chat — a CLI that lets you talk to your microservices through an LLM. It discovers every service in the registry, exposes each endpoint as a tool, and lets a model decide which RPCs to call based on what you ask. …
From Chat to Flows: What If Your Services Could Orchestrate Themselves?
Friday, May 29, 2026 in News
We shipped micro chat recently — an interactive terminal where you talk to your services through an LLM. You say “list all users over 30 and send each a welcome email,” and the model figures out which services to call, in what order, …
Atlas Cloud Sponsors Go Micro: 300+ AI Models, One Integration
Thursday, May 28, 2026 in News
We’re excited to announce that Atlas Cloud is sponsoring Go Micro as an official AI provider partner. Atlas Cloud is now a first-class provider in the ai package, giving Go Micro users access to 300+ models across text, image, and video …
Your Microservices Are Already an AI Platform
Thursday, March 05, 2026 in News
Here’s the pitch: you have microservices. They already have well-defined endpoints, typed request/response schemas, and service discovery. An AI agent needs the same things — a list of tools with input schemas and descriptions. The gap between …
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 …
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?” …