Distri is a framework for building and composing AI agents, written in Rust. It enables developers to create, publish, and combine agent capabilities using the MCP (Multi-Agent Communication Protocol) standard.
Distri agents can be configured and run in two ways:
Lets explore running distri
using a sample configuration file.
List Agents
distri list -c samples/config.yaml
You can run github_explorer
using:
distri run -c samples/config.yaml github_explorer
You can install Distri in two ways:
cargo install --git /~https://github.com/distrihub/distri distri --locked
docker run -it distrihub/distri
Distri proxy also provides a convenient proxy to run stdio commands.
distri proxy -c samples/proxy.yaml
For looking at all the available tools
distri list-tools -c samples/config.yaml
Distri is connected to AI Gateway and has access to 250+ LLMs. For more details checkout Langdb AI Gateway.
MCP (Multi-Agent Communication Protocol) is a standardized protocol that enables agents to:
- Communicate with each other in a structured way
- Share capabilities and tools
- Execute tasks collaboratively
- Handle state management and coordination
With MCP, any agent can be published as a reusable tool that other agents can leverage, creating an ecosystem of composable AI capabilities.
- 🔧 Modular Design: Build agents as independent modules that can be mixed and matched
- 🤝 MCP Protocol: Standardized communication between agents
- 🚀 Rust Performance: Built with Rust for reliability and speed
- 📦 Tool Publishing: Share your agents as MCP-compatible tools
- 🔌 Easy Integration: Simple API for adding new capabilities
Distri agents can be configured in two ways:
[Documentation and examples coming soon]
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
We welcome contributions! Please see our CONTRIBUTING.md guide for details.