1. Conduid
  2. Developer Tools
  3. Solace Agent Mesh
MCP server · Developer Tools

Solace Agent Mesh

An event-driven framework designed to build and orchestrate multi-agent AI systems. It enables seamless integration of AI agents with real-world data sources and systems, facilitating complex, multi-step workflows.

92Excellent

Scored yesterday · breakdown

About Solace Agent Mesh

Solace Agent Mesh is an MCP server published by SolaceLabs in the Developer Tools category: an event-driven framework designed to build and orchestrate multi-agent AI systems. It enables seamless integration of AI agents with real-world data sources and systems, facilitating complex, multi-step workflows. It has been installed 0 times through Conduid.

The repository has 2.1K stars and 101 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx solace-agent-mesh

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Solace Agent Mesh

Powered by Claude · Grounded in docs

I know everything about Solace Agent Mesh. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

1.28.8v1.28.8 · 28 Aug 2026Bug Fixes [`2b4ef6a`](https://github.com/SolaceLabs/solace-agent-mesh/commit/2b4ef6ab54e796bc77f12d5edb84dbb656e36610) pin hatchling below 1.32 to avoid core-metadata 2.5 upload break……
1.28.7v1.28.7 · 11 Aug 2026Bug Fixes [`52f5277`](https://github.com/SolaceLabs/solace-agent-mesh/commit/52f5277e80414144a27704614327b6146abdea38) pin libnss3 to 2:3.110-1+deb13u4 for CVE-2026-163… ([#1618](https://github.com/SolaceLabs/solace-agent-mesh/pull/1618))…
1.28.6v1.28.6 · 28 Jul 2026Continuous Integration [`8ed8bfe`](https://github.com/SolaceLabs/solace-agent-mesh/commit/8ed8bfe3aeace30d0401cb3c51864ac2d7682889) bump version to ui-v2.13.4 [skip ci] (Automated Version Bump) Chores…
1.28.5v1.28.5 · 21 Jul 2026Bug Fixes [`4c96454`](https://github.com/SolaceLabs/solace-agent-mesh/commit/4c96454f7660201c12441e92e9ef9e7a8e0b39aa) upgrade google-adk to 2.5.0 to fix starlette CVEs… ([#1602](https://github.com/SolaceLabs/solace-agent-mesh/pull/1602))…
1.28.4v1.28.4 · 29 Jun 2026Continuous Integration [`1d19035`](https://github.com/SolaceLabs/solace-agent-mesh/commit/1d190355bdccfacdee9029fc06bfe5d462930144) bump version to ui-v2.13.3 [skip ci] (Automated Version Bump) Chores…

README


Solace Agent Mesh is a framework that supports building AI applications where multiple specialized AI agents work together to solve complex problems. It uses the event messaging of Solace Platform for true scalability and reliability.

With Solace Agent Mesh (SAM), you can create teams of AI agents, each having distinct skills and access to specific tools. For example, you could have a Database Agent that can make SQL queries to fetch data or a MultiModal Agent that can help create images, audio files and reports.

The framework handles the communication between agents automatically, so you can focus on building great AI experiences.

SAM creates a standardized communication layer where AI agents can:

  • Delegate tasks to peer agents
  • Share data and artifacts
  • Connect with diverse user interfaces and external systems
  • Execute multi-step workflows with minimal coupling

SAM is built on top of the Solace AI Connector (SAC) which allows Solace Platform Event Brokers to connect to AI models and services and Google's Agent Development Kit (ADK) for AI logic and tool integrations.

The result? A fully asynchronous, event-driven and decoupled AI agent architecture ready for production deployment. It is robust, reliable and easy to maintain.


🔑 Key Features

📚 Want to know more? Check out the full Solace Agent Mesh documentation.


🚀 Quick Start (5 minutes)

Set up Solace Agent Mesh in just a few steps.

⚙️ System Requirements

To run Solace Agent Mesh locally, you'll need:

  • Python 3.10.16 – 3.13.x
  • pip (comes with Python)
  • OS: MacOS, Linux, or Windows (with WSL)
  • LLM API key (any major provider or custom endpoint)

🎸 Vibe Coding

To quickly setup and customize your Agent Mesh, check out the Vibe Coding Quickstart Guide. This guide walks you through the essential steps to get Solace Agent Mesh up and running with minimal effort.

💻 Setup Steps

1. Create a directory for a new project

mkdir my-sam && cd my-sam

2. Create and activate a Python virtual environment

python3 -m venv .venv && source .venv/bin/activate

3. Install Solace Agent Mesh (SAM)

Check if you have a version of SAM already installed.

sam -v

If you have an earlier version, uninstall it and start from scratch:

pip3 uninstall solace-agent-mesh

Note: Optionally, you can try to upgrade versions but this action is not officially supported at this time. (pip3 install --upgrade solace-agent-mesh)

If no previous version exists, install the latest version with:

pip3 install solace-agent-mesh

4. Initialize the new project via a GUI tool

sam init --gui

Note: This initialization UI runs on port 5002

5. Run the project

sam run

6. Verify SAM is running

Open the Web UI at http://localhost:8000 for the chat interface and ask a question

🔧 Customize SAM

New agents can be added via a GUI interface

sam add agent --gui

Existing plugins can be installed

sam plugin add <your-component-name> --plugin <plugin-name>

🏗️ Architecture Overview

Solace Agent Mesh provides a "Universal A2A Agent Host," a flexible and configurable runtime environment built by integrating Google's Agent Development Kit (ADK) with the Solace AI Connector (SAC) framework.

The system allows you to:

  • Host AI agents developed with Google ADK within the SAC framework
  • Define agent capabilities (LLM model, instructions, tools) primarily through SAC YAML configuration
  • Use Solace Platform as the transport for standard Agent-to-Agent (A2A) protocol communication
  • Enable dynamic discovery of peer agents running within the same ecosystem
  • Allow agents to delegate tasks to discovered peers via the A2A protocol over Solace
  • Manage file artifacts using built-in tools with automatic metadata injection
  • Perform data analysis using built-in SQL, JQ, and visualization tools
  • Use dynamic embeds for context-dependent information resolution

Key Components

  • SAC handles broker connections, configuration loading, and component lifecycle
  • ADK provides the agent runtime, LLM interaction, tool execution, and state management
  • A2A Protocol enables communication between clients and agents, and between peer agents
  • Dynamic Embeds allow placeholders in responses that are resolved with context-dependent information
  • File Management provides built-in tools for artifact creation, listing, loading, and metadata handling

➡️ Next Steps

Want to go further? Here are some hands-on tutorials to help you get started:

🔧 Integration ⏱️ Est. Time 📘 Tutorial
🌤️ Weather AgentLearn how to build an agent that gives Solace Agent Mesh the ability to access real-time weather information. ~15 min Weather Agent Plugin
🗃️ SQL Database IntegrationEnable Solace Agent Mesh to answer company-specific questions using a sample coffee company database. ~10–15 min SQL Database Tutorial
🧠 MCP IntegrationIntegrating a Model Context Protocol (MCP) Servers into Solace Agent Mesh. ~10–15 min MCP Integration Tutorial
💬 Slack IntegrationChat with Solace Agent Mesh directly from Slack. ~20–30 min Slack Integration Tutorial
👔 Microsoft Teams Integration (Enterprise)Connect Solace Agent Mesh Enterprise to Microsoft Teams with Azure AD authentication. ~30–40 min Teams Integration Tutorial

👥 Contributors

Solace Agent Mesh is built with the help of our amazing community. Thanks to everyone who has contributed ideas, code and time to make this project better!

View the full list of contributors here: GitHub Contributors 💚

Looking to contribute? Check out CONTRIBUTING.md to get started and see how you can help!


📄 License

This project is licensed under the Apache 2.0 License. See the full license text in the LICENSE file.


🧪 Running Tests

This project uses pytest for testing. You can run tests using either hatch or pytest directly.

Using Hatch

The recommended way to run tests is through the hatch environment, which ensures all dependencies are managed correctly.

# Run all tests
hatch test

# Run tests with tags
hatch test -m "<tag>"

Using Pytest Directly

If you prefer to use pytest directly, you must first install the project with its test dependencies.

# Install the project in editable mode with the 'test' extras
pip install -e .[test]

# Run all tests
pytest

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Solace Agent Mesh

How do I install Solace Agent Mesh?

Run npx solace-agent-mesh, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Solace Agent Mesh safe to use with an AI agent?

Its trust score is 92 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Solace Agent Mesh still maintained?

Yes — the latest release is 1.28.8 (28 Aug 2026), and the last commit was 6 months ago. The repository has 2.1K stars and 0 open issues.