AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

AgenticMesh

mcp-epsilla-cloud-agenticmesh ยท by epsilla-cloud

An open-source MCP orchestration framework for multi-agent / micro-agent in Enterprise, inspired by service mesh ๐Ÿš€

โ€” No reviews yet
0 installs
42 views
0.0% viewโ†’install

Install

$ agentstack add mcp-epsilla-cloud-agenticmesh

โœ“ scanned ยท โœ“ verified, works with Claude Code, Cursor, and more.

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-epsilla-cloud-agenticmesh)

Reliability & compatibility

โœ“ Security review passed
0 installs to date
โ€” no reviews yet
โ—‹ stale ยท 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work โ†’
Are you the author of AgenticMesh? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

๐Ÿš€ Epsilla AgenticMesh

Epsilla AgenticMesh is an open-source governance and orchestration framework for multi-agent and micro-agent, inspired by service mesh architecture, designed to help you build, scale, and manage powerful AI agent systems with unified communication, policy control, and observability.


๐ŸŒŸ Key Features

โœ… Communication Proxy Seamlessly route messages between agents using multiple protocols (MCP, HTTP, gRPC), with built-in retries, timeouts, and prioritization.

โœ… Policy & Configuration Control Define and enforce access, rate limits, circuit breaking, and task routing policies from a central control plane.

โœ… Observability Gain full visibility into multi-agent interactions with tracing, metrics, dashboards, and alerting.

โœ… Scalable & Resilient Support for load balancing, auto-scaling, failover routing, and dynamic agent registration.

โœ… Security & Identity Mutual authentication, encrypted messaging, and fine-grained role-based access across agent systems.

โœ… Flexible Deployment Run as sidecars, centralized proxies, or lightweight agents โ€” on Kubernetes, cloud, or on-prem.


๐Ÿ“ Architecture

Core components:

  • Communication Proxy: Message routing & protocol handling.
  • Policy & Configuration: Define control rules & dynamic updates.
  • Observability Module: Collect, visualize, and monitor agent system performance.

๐Ÿ”ง Getting Started

1๏ธโƒฃ Install

git clone https://github.com/epsilla-cloud/AgenticMesh.git
cd AgenticMesh
poetry install

2๏ธโƒฃ Run Example Demo

poetry run python3 examples/demo.py

3๏ธโƒฃ Launch Dashboard (Optional)

streamlit run dashboard/app.py

๐Ÿ’ก Example Use Cases

  • Multi-agent RAG systems for document analysis
  • Autonomous multi-agent negotiation systems
  • Large-scale agent-based simulation platforms

๐Ÿ” Roadmap

  • โœ… Initial open-source release
  • ๐Ÿ”„ Integration with AutoGen, LangGraph, CrewAI
  • ๐Ÿ” Federated cross-org agent mesh support
  • ๐Ÿ› ๏ธ Visual orchestration editor for human-in-the-loop control
  • ๐Ÿค– AI-driven policy tuning & optimization

๐Ÿค Contributing

We welcome contributions! Please check out the [CONTRIBUTING.md](./CONTRIBUTING.md) for details on how to get started.


๐Ÿ“„ License

This project is licensed under the Apache 2.0 License โ€” see the [LICENSE](./LICENSE) file for details.


๐Ÿ”— Links


> Note: AgenticMesh is a reference implementation and experimental platform by the Epsilla team to explore next-generation agent governance patterns. We are excited to evolve this together with the open-source community!


๐Ÿ“ฅ CONTRIBUTING.md

Thank you for considering contributing to AgenticMesh! Hereโ€™s how you can help:

๐Ÿ“ฆ Reporting Issues

  • Use the GitHub Issues tab to report bugs or request features.

๐Ÿ”จ Submitting Pull Requests

  • Fork the repository.
  • Create a feature branch.
  • Submit a clear pull request with a description of your changes.

๐Ÿ›  Development Setup

  • Clone the repo and install dependencies.
  • Follow the coding style and run tests before submitting PRs.

๐Ÿ“œ LICENSE

Apache License 2.0

Copyright (c) 2025 Epsilla

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

๐Ÿงช Example Demo Script (examples/demo.py)

# examples/demo.py

from agenticmesh import AgenticMesh, Agent

# Define example agents
agent_a = Agent(name="AgentA", capabilities=["task1", "task2"])
agent_b = Agent(name="AgentB", capabilities=["task3"])

# Initialize mesh
mesh = AgenticMesh()
mesh.register(agent_a)
mesh.register(agent_b)

# Simulate a task
result = mesh.send_task(from_agent="AgentA", to_agent="AgentB", task="task3", payload={"data": "demo"})
print("Task result:", result)

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source โ€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.