--- layout: default --- # Docs Documentation for the Go Micro framework. ## Overview Go Micro architecture Go Micro is a framework for building services and agents in Go. Write services — they register, discover each other, and communicate via RPC and events. Every endpoint is automatically an AI-callable tool via [MCP](https://modelcontextprotocol.io/), so AI agents can use your services the moment they run. Build agents to orchestrate them, and workflows to trigger them on events — all from the same primitives. It's built on a pluggable architecture of Go interfaces: service discovery, client/server RPC, pub/sub, plus auth, caching, and storage. Sane defaults out of the box, everything swappable. ## Learn More To get started follow the getting started guide. Otherwise continue to read the docs for more information about the framework. ## Contents - [Getting Started](getting-started.html) - [MCP & AI Agents](mcp.html) - Turn services into AI-callable tools with the Model Context Protocol - [CLI & Gateway Guide](guides/cli-gateway.html) - Development vs Production modes - [Quick Start](quickstart.html) - [Architecture](architecture.html) - [Configuration](config.html) - [Registry](registry.html) - [Broker](broker.html) - [Client/Server](client-server.html) - [Transport](transport.html) - [Store](store.html) - [Plugins](plugins.html) - [Examples](examples/index.md) ## Development & Deployment - [micro run](guides/micro-run.html) - Local development with hot reload, API gateway, and agent playground - [micro build & deploy](deployment.html) - Build binaries and deploy to production - [micro server](server.html) - Optional production web dashboard with auth ## AI & Agents - [Building AI-Native Services](guides/ai-native-services.html) - End-to-end tutorial for MCP-enabled services - [MCP Security Guide](guides/mcp-security.html) - Auth, scopes, rate limiting, and audit logging - [Tool Description Best Practices](guides/tool-descriptions.html) - Writing docs that make agents effective - [Agent Integration Patterns](guides/agent-patterns.html) - Multi-agent workflows and architectures ## Advanced - [Framework Comparison](guides/comparison.html) - [Architecture Decisions](architecture/index.md) - [Real-World Examples](examples/realworld/index.md) - [Migration Guides](guides/migration/index.md) - [Observability](observability.html) - [Contributing](contributing.html) - [Roadmap](roadmap.html)