EveryDev.ai
Sign inSubscribe
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
Main Menu
  • Tools
  • Developers
  • Topics
  • Discussions
  • Communities
  • News
  • Podcasts
  • Blogs
  • Builds
  • Contests
  • Compare
  • Arena
  • Polls
Create
    Home
    Tools

    2,645+ AI tools

    • New
    • Trending
    • Featured
    • Compare
    • Arena
    Categories
    • Agents1666
    • Coding1214
    • Infrastructure542
    • Marketing451
    • Design437
    • Projects396
    • Research371
    • Analytics339
    • Testing233
    • MCP227
    • Data213
    • Security200
    • Integration170
    • Learning155
    • Communication148
    • Prompts144
    • Extensions137
    • Commerce125
    • Voice122
    • DevOps99
    • Web78
    • Finance21
    1. Home
    2. Tools
    3. Go Micro
    Go Micro icon

    Go Micro

    AI Infrastructure
    Featured

    An open-source Go framework for building microservices that AI agents can use, with MCP integration, service generation from prompts, and agent orchestration.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under Apache License 2.0. All features available.

    Engagement

    Available On

    Web
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI InfrastructureAgent FrameworksMCP Integration

    Alternatives

    Solo.ioCloudflare AgentsSentient Foundation
    Developer
    MicroLondon, United KingdomEst. 2015$2000000 raised

    Listed Jun 2026

    About Go Micro

    Go Micro is an open-source Go framework for building microservices designed to be orchestrated by AI agents. Originally created in 2015, the project has evolved to v5 and now centers on AI-native microservice development, where every service endpoint is automatically exposed as an AI-callable tool via the Model Context Protocol (MCP). The repository reports over 22,000 GitHub stars and is licensed under Apache 2.0.

    What It Is

    Go Micro is a production-ready microservices framework for Go that bridges traditional distributed systems patterns with modern AI agent workflows. Developers write services as ordinary Go structs with methods; the framework handles registration, discovery, RPC communication, and pub/sub events. The key differentiator in v5 is that every endpoint automatically becomes an MCP tool, allowing LLMs to discover and call services without any additional wiring. An micro chat command lets an LLM orchestrate across all running services as a unified agent.

    AI-Native Architecture

    The framework's AI layer sits on top of its core distributed systems primitives:

    • MCP gateway: Every service endpoint is exposed as an AI tool at http://localhost:8080/mcp/tools automatically.
    • Agent orchestration: micro chat connects to a configured LLM provider and lets it discover services from the registry and call them as tools.
    • Service generation: micro run --prompt "..." sends a plain-English description to an LLM, which designs the architecture, generates Go handlers with real business logic, compiles them, and starts the services.
    • Mid-conversation generation: When the agent needs a capability that doesn't exist, it can generate a new service on the fly during a chat session.
    • Seven LLM providers: Anthropic (claude-sonnet-4), OpenAI (gpt-4o), Google Gemini, Groq, Mistral, Together AI, and Atlas Cloud are supported with a unified interface.

    Core Framework Capabilities

    Beneath the AI layer, Go Micro provides a full microservices toolkit:

    • Service discovery: mDNS by default, with Consul and etcd as alternatives.
    • RPC and streaming: gRPC transport with load balancing and streaming support.
    • Pub/sub messaging: NATS, RabbitMQ, and HTTP broker built in.
    • Typed data model: CRUD and query layer with SQLite, Postgres, and in-memory backends.
    • Hot reload: micro run watches files and rebuilds on change.
    • Templates: micro new --template crud/pubsub/api scaffolds common patterns.
    • Deployment: micro deploy user@server pushes via SSH and systemd with no Docker required.
    • Pluggable interfaces: All abstractions are Go interfaces, so any component can be swapped without changing service code.

    Developer Workflow

    The typical workflow starts with either micro new to scaffold a service from a template or micro run --prompt to generate one from a description. Running micro run starts a local environment with a dashboard at http://localhost:8080, a REST/gRPC API gateway, an agent playground, and MCP tool endpoints. micro chat then connects an LLM to the running services. For production, micro deploy handles SSH-based deployment with systemd process management. Generated code can be edited by hand at any time; re-running preserves manual changes.

    Update: v5.25.0

    The latest release is v5.25.0, published on June 3, 2026, with the repository last pushed on June 4, 2026. The v5 line represents a significant evolution from earlier versions, adding the full AI/MCP layer on top of the established microservices core. The project lists Anthropic and Atlas Cloud as sponsors on the homepage and in the README.

    Community Discussions

    Be the first to start a conversation about Go Micro

    Share your experience with Go Micro, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under Apache License 2.0. All features available.

    • All framework features
    • MCP gateway
    • AI agent orchestration
    • Service generation from prompts
    • 7 LLM providers

    Capabilities

    Key Features

    • MCP gateway exposing every endpoint as an AI tool
    • Service generation from plain-English prompts via micro run --prompt
    • Agent orchestration with micro chat across all running services
    • Support for 7 LLM providers: Anthropic, OpenAI, Gemini, Groq, Mistral, Together AI, Atlas Cloud
    • Service discovery via mDNS, Consul, or etcd
    • RPC client/server with gRPC transport, load balancing, and streaming
    • Pub/sub messaging with NATS, RabbitMQ, and HTTP broker
    • Typed data model with CRUD and queries (SQLite, Postgres, memory)
    • Hot reload with micro run
    • Service scaffolding with micro new --template
    • One-command SSH+systemd deployment with micro deploy
    • Pluggable architecture via Go interfaces
    • REST and gRPC API gateway
    • Multi-service project support with micro.mu config
    • Mid-conversation service generation by AI agent

    Integrations

    Anthropic Claude
    OpenAI GPT-4o
    Google Gemini
    Groq
    Mistral
    Together AI
    Atlas Cloud
    gRPC
    NATS
    RabbitMQ
    Consul
    etcd
    PostgreSQL
    SQLite
    Model Context Protocol (MCP)
    systemd
    SSH
    API Available
    View Docs

    Reviews & Ratings

    No ratings yet

    Be the first to rate Go Micro and help others make informed decisions.

    Developer

    Micro

    micro builds Go Micro, an open-source framework for developing AI-native microservices. The project, originally started in 2015, has grown to over 22,000 GitHub stars and is now in its fifth major version. The organization focuses on making it easy for developers to build, run, and orchestrate microservices that AI agents can use via the Model Context Protocol. Go Micro is Apache 2.0 licensed and sponsored by Anthropic and Atlas Cloud.

    Founded 2015
    London, United Kingdom
    $2000000 raised
    10 employees

    Used by

    Individual open source developers
    Community users of Go Micro
    Read more about Micro
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Solo.io icon

    Solo.io

    Solo.io is a unified platform for secure cloud connectivity and agentic AI infrastructure, offering enterprise-grade API gateway, service mesh, and AI agent management for Kubernetes environments.

    Cloudflare Agents icon

    Cloudflare Agents

    Build and deploy AI agents on Cloudflare's global network with built-in state management, real-time communication, and seamless tool integration.

    Sentient Foundation icon

    Sentient Foundation

    Open-source AGI foundation uniting builders, researchers, and communities to develop transparent, collaborative artificial general intelligence.

    Browse all tools

    Related Topics

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    261 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    374 tools

    MCP Integration

    Tools for integrating MCP with existing AI systems and applications.

    60 tools
    Browse all topics
    Back to all tools
    Discussions