freshcrate
Skin:/
Home > MCP Servers > solace-agent-mesh

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-s

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

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.

README

Solace Agent Mesh Logo

Solace Agent Mesh

Open-source framework for building event driven multi-agent AI systems

Star ⭐️ this repo to stay updated as we ship new features and improvements.

License PyPI - Version PyPI - Python Version PyPI - Downloads

Key FeaturesQuickstartNext StepsDocs


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.

SAM Architecture Diagram

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 Agent
Learn 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 Integration
Enable Solace Agent Mesh to answer company-specific questions using a sample coffee company database.
~10–15 min SQL Database Tutorial
🧠 MCP Integration
Integrating a Model Context Protocol (MCP) Servers into Solace Agent Mesh.
~10–15 min MCP Integration Tutorial
💬 Slack Integration
Chat 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

Solace Agent Mesh Logo

Release History

VersionChangesUrgencyDate
1.28.0## Continuous Integration * [`dac85d4`](https://github.com/SolaceLabs/solace-agent-mesh/commit/dac85d432b45e5d3198485242b1195b00358cdb8) bump version to ui-v2.13.0 [skip ci] (Automated Version Bump) ## Chores * [`71e3f12`](https://github.com/SolaceLabs/solace-agent-mesh/commit/71e3f12130195cb63a9ec474e7121361d841b0c7) release 1.28.0 ([#1579](https://github.com/SolaceLabs/solace-agent-mesh/pull/1579)) (Core Release Engineering) ## UI Changes up to ui-v2.13.0 ### Features * [`91322d4`](httpsHigh6/2/2026
1.26.1## Bug Fixes * [`cc1a845`](https://github.com/SolaceLabs/solace-agent-mesh/commit/cc1a845eac38156d4567b11d4c56c652cac69337) bump mako to 1.3.12 for security vulnerabilities … ([#1554](https://github.com/SolaceLabs/solace-agent-mesh/pull/1554)) (Hugo Paré) * [`852d0e6`](https://github.com/SolaceLabs/solace-agent-mesh/commit/852d0e60dbd8dd4e52307ffdffe9bb44f20f0a72) bump ffmpeg to 7.1.4 for CVE-2026-40962 ([#1556](https://github.com/SolaceLabs/solace-agent-mesh/pull/1556)) (Hugo Paré) * [`35c0b14High5/26/2026
1.26.0## Features * [`03c630a`](https://github.com/SolaceLabs/solace-agent-mesh/commit/03c630a71cc20ac6aa5bef3df57a0791846b20c4) Revert model configuration - optionally allow mo… ([#1532](https://github.com/SolaceLabs/solace-agent-mesh/pull/1532)) (Paul Jones) ## Bug Fixes * [`47ee6cf`](https://github.com/SolaceLabs/solace-agent-mesh/commit/47ee6cfc37b9a3b11a567a63f5561c4827209bec) Missing RBAC handling and documentation on model … ([#1540](https://github.com/SolaceLabs/solace-agent-mesh/pull/1540)High5/21/2026
1.25.1## Bug Fixes * [`06819b7`](https://github.com/SolaceLabs/solace-agent-mesh/commit/06819b769aa5d3d50462d8997e968192d5a5fa15) - gitpython vulnerabilities : solace-agent-mesh:m… ([#1527](https://github.com/SolaceLabs/solace-agent-mesh/pull/1527)) (enavitan) * [`79387a4`](https://github.com/SolaceLabs/solace-agent-mesh/commit/79387a440efbff5f2bfed1c51b080c77ccb83914) - [prod] investigatge solace-chat slowness ([#1533](https://github.com/SolaceLabs/solace-agent-mesh/pull/1533)) (enavitan) ## ContinHigh5/14/2026
1.25.0## Features * [`9a76c0f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/9a76c0f2abaa3dbeb37b1cfd1893b778e4abfe75) synthetic-monitor auth path for Datadog smoke te… ([#1461](https://github.com/SolaceLabs/solace-agent-mesh/pull/1461)) (Jamie Karam) ## Bug Fixes * [`5b94bee`](https://github.com/SolaceLabs/solace-agent-mesh/commit/5b94bee0d47211bb2ff19d57f9c47fb4b5612efd) replace hardcoded max_llm_calls_per_task with con… ([#1471](https://github.com/SolaceLabs/solace-agent-mesh/pull/1471High5/11/2026
1.24.1## Bug Fixes * [`e2adc1e`](https://github.com/SolaceLabs/solace-agent-mesh/commit/e2adc1ea2cba0e5a9d90495868110819c72efb58) - Enable Support to Skip TLS verification for MCP… ([#1495](https://github.com/SolaceLabs/solace-agent-mesh/pull/1495)) (enavitan) ## Chores * [`8901263`](https://github.com/SolaceLabs/solace-agent-mesh/commit/8901263aa78d70d24d9b5886af1baba1f3d5a286) release 1.24.1 ([#1506](https://github.com/SolaceLabs/solace-agent-mesh/pull/1506)) (Core Release Engineering) High5/6/2026
1.23.0## Continuous Integration * [`432899f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/432899f714e27fa66e8bfdda6b37635896045434) bump version to ui-v2.9.2 [skip ci] (Automated Version Bump) * [`aaa5a8a`](https://github.com/SolaceLabs/solace-agent-mesh/commit/aaa5a8a6536d412ea8718c9211b705d39a3d5624) bump version to ui-v2.10.0 [skip ci] (Automated Version Bump) ## Chores * [`e41fd8f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/e41fd8fbeaefbbab555fc51e7758a95003113066) releaHigh4/30/2026
1.20.3## [1.20.3](https://github.com/SolaceLabs/solace-agent-mesh/compare/1.20.2...1.20.3) (2026-04-27) ### Bug Fixes * **DATAGO-133911:** SSE event replay silently disabled — gateway logs "Database not configured" despite SQL session_service ([#1458](https://github.com/SolaceLabs/solace-agent-mesh/issues/1458)) ([abb5c6c](https://github.com/SolaceLabs/solace-agent-mesh/commit/abb5c6cf603fa263918e8653b67cd6b51de82557)) * **DATAGO-133916 :** extract_content_from_artifact spends 10-14 min per call suHigh4/27/2026
1.19.0## Features * [`4a6886d`](https://github.com/SolaceLabs/solace-agent-mesh/commit/4a6886d3cdc86f7e03d84cdb6df8a6818bdae44a) ensure trailing slashes on api_base are handled … ([#1412](https://github.com/SolaceLabs/solace-agent-mesh/pull/1412)) (Cyrus Mobini) ## Bug Fixes * [`1b14bfe`](https://github.com/SolaceLabs/solace-agent-mesh/commit/1b14bfe159ce1e14a41e4be4446327eb71e65f47) investigate intermittent hanging integration test… ([#1417](https://github.com/SolaceLabs/solace-agent-mesh/pull/141High4/22/2026
1.18.40## Bug Fixes * [`3bff9f9`](https://github.com/SolaceLabs/solace-agent-mesh/commit/3bff9f92b32b5ffee5061908aaf600f4d37c10ea) bump solace-ai-connector to 3.3.10 ([#1411](https://github.com/SolaceLabs/solace-agent-mesh/pull/1411)) (enavitan) ## Chores * [`d48ee8e`](https://github.com/SolaceLabs/solace-agent-mesh/commit/d48ee8ed8096f8ffacd813f8102dc84374416711) fix broken unit tests ([#1413](https://github.com/SolaceLabs/solace-agent-mesh/pull/1413)) (Paul Jones) * [`4e16a59`](https://github.com/High4/17/2026
1.18.39## Features * [`44b5822`](https://github.com/SolaceLabs/solace-agent-mesh/commit/44b5822646ca7a3c28a8ce565cae22b00f0d04b4) add ArtifactMonitor for tracking artifact servic… ([#1397](https://github.com/SolaceLabs/solace-agent-mesh/pull/1397)) (Cyrus Mobini) * [`573f32e`](https://github.com/SolaceLabs/solace-agent-mesh/commit/573f32ecf71a59b90ddf67a45655a2781bff1065) remove model status change callback and simplify… ([#1408](https://github.com/SolaceLabs/solace-agent-mesh/pull/1408)) (Cyrus MobinHigh4/15/2026
1.18.38## Bug Fixes * [`bc025d1`](https://github.com/SolaceLabs/solace-agent-mesh/commit/bc025d108b9875afa7732efb7ce073c790c5cbae) LLM environment variables not seeded ([#1399](https://github.com/SolaceLabs/solace-agent-mesh/pull/1399)) (Paul Jones) * [`8959ba9`](https://github.com/SolaceLabs/solace-agent-mesh/commit/8959ba93d5993b11feb3f3494028d2402fa44e58) update model-type to model-provider to fix unit t… ([#1402](https://github.com/SolaceLabs/solace-agent-mesh/pull/1402)) (Ziyang Wang) * [`09c31cbHigh4/15/2026
1.18.37## Bug Fixes * [`1403337`](https://github.com/SolaceLabs/solace-agent-mesh/commit/1403337a17d780349bde6dcb24449612ad3fcb57) Image+prompt tasks very slow due to multi-agent d… ([#1391](https://github.com/SolaceLabs/solace-agent-mesh/pull/1391)) (Amir Ghasemi) * [`b9f8513`](https://github.com/SolaceLabs/solace-agent-mesh/commit/b9f8513055cbbea4c91d436f0370a6a705f95de2) azure-gpt-5 model connection fails test connectio… ([#1395](https://github.com/SolaceLabs/solace-agent-mesh/pull/1395)) (Paul JonHigh4/15/2026
1.18.35## Features * [`ab75ce7`](https://github.com/SolaceLabs/solace-agent-mesh/commit/ab75ce7e958a4d912d03bc87e61cf3c86e762702) Add configurable task timeout to gateway framewo… ([#1383](https://github.com/SolaceLabs/solace-agent-mesh/pull/1383)) (JessieWang) ## Continuous Integration * [`d245992`](https://github.com/SolaceLabs/solace-agent-mesh/commit/d2459923b2b748959c498c7757eb22d4073ce0e0) bump version to ui-v2.3.7 [skip ci] (Automated Version Bump) * [`6edbd46`](https://github.com/SolaceLabs/High4/13/2026
1.18.34## Features * [`2a89832`](https://github.com/SolaceLabs/solace-agent-mesh/commit/2a89832dd2bd3439d6f2028f0f7810690a20277d) add OAuthRemoteMonitor and instrument auth middl… ([#1350](https://github.com/SolaceLabs/solace-agent-mesh/pull/1350)) (Jamie Karam) * [`2849f18`](https://github.com/SolaceLabs/solace-agent-mesh/commit/2849f188447fdf39f3386b92f75c5819dce53fcd) Add model_provider configuration to agent and wo… ([#1365](https://github.com/SolaceLabs/solace-agent-mesh/pull/1365)) (Cyrus MobiniHigh4/11/2026
1.18.33## Bug Fixes * [`9997240`](https://github.com/SolaceLabs/solace-agent-mesh/commit/9997240ee14610b8690df192073382479d99c9d5) Update OpenSSL to 3.5.5-1~deb13u2 in Dockerfile (… ([#1353](https://github.com/SolaceLabs/solace-agent-mesh/pull/1353)) (Rohan) ## Continuous Integration * [`1ffcd7a`](https://github.com/SolaceLabs/solace-agent-mesh/commit/1ffcd7a0b04eff32a5b422eea307bdb00bd8af01) bump version to ui-v2.2.10 [skip ci] (Automated Version Bump) * [`51ddbfd`](https://github.com/SolaceLabs/soHigh4/8/2026
1.18.31## Features * [`3c16c5d`](https://github.com/SolaceLabs/solace-agent-mesh/commit/3c16c5d16fe356ad159bd837075ce6b11d0c08f4) observability|as Morgan i want to be able to vi… ([#1327](https://github.com/SolaceLabs/solace-agent-mesh/pull/1327)) (enavitan) * [`a3a3522`](https://github.com/SolaceLabs/solace-agent-mesh/commit/a3a3522a7f58043bcad283229362e2ec6bf36bac) observability|as Morgan i want to see agents and… ([#1338](https://github.com/SolaceLabs/solace-agent-mesh/pull/1338)) (enavitan) ## BMedium4/8/2026
1.18.30## Features * [`bcdb13f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/bcdb13fa27c4ec5ed4e275cbf6bc983a7f4fc2d1) observability|SAM instrument LLM in/out ([#1306](https://github.com/SolaceLabs/solace-agent-mesh/pull/1306)) (enavitan) ## Bug Fixes * [`4ef031f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/4ef031fd9a9bd9cf7a36f4316d3868c05c2aebee) bump pypdf, openai, litellm ([#1337](https://github.com/SolaceLabs/solace-agent-mesh/pull/1337)) (Rohan) * [`62a9fa8`](https://gitMedium4/7/2026
1.18.29## Continuous Integration * [`813c453`](https://github.com/SolaceLabs/solace-agent-mesh/commit/813c453951719217dc049b81b9416e78c26f18a8) bump version to ui-v2.2.3 [skip ci] (Automated Version Bump) ## UI Changes up to ui-v2.2.3 ### Bug Fixes * [`91d5b4c`](https://github.com/SolaceLabs/solace-agent-mesh/commit/91d5b4cbe86fb9f2391861cebe03842dae3b4e1a) new hook for MoveSession ([#1333](https://github.com/SolaceLabs/solace-agent-mesh/pull/1333)) (Amir Ghasemi) Medium4/5/2026
1.18.28## Bug Fixes * [`a14aa98`](https://github.com/SolaceLabs/solace-agent-mesh/commit/a14aa98795de65fc136498fcee94d916a570cd36) dangling tool call repair logic ([#1329](https://github.com/SolaceLabs/solace-agent-mesh/pull/1329)) (Amir Ghasemi) * [`800d5e9`](https://github.com/SolaceLabs/solace-agent-mesh/commit/800d5e97267570b2d13a610b8c36eda44fcaf9cc) fix picomatch vulnerability ([#1328](https://github.com/SolaceLabs/solace-agent-mesh/pull/1328)) (Rohan) ## Continuous Integration * [`8e43714`](hMedium4/4/2026
1.18.27## Bug Fixes * [`f378245`](https://github.com/SolaceLabs/solace-agent-mesh/commit/f37824577ab2641c24ac45e60eaae88a1b474cfd) bump fastmcp ([#1312](https://github.com/SolaceLabs/solace-agent-mesh/pull/1312)) (Rohan) ## Continuous Integration * [`14a949a`](https://github.com/SolaceLabs/solace-agent-mesh/commit/14a949a95796d8f83092992832096c94e05536f9) bump version to ui-v2.0.3 [skip ci] (Automated Version Bump) * [`c453fa7`](https://github.com/SolaceLabs/solace-agent-mesh/commit/c453fa7ebc4e71c3Medium4/2/2026
1.18.26## Bug Fixes * [`b970fc6`](https://github.com/SolaceLabs/solace-agent-mesh/commit/b970fc66a49abffd538d17abe6338055d6683039) Kaleido/Chrome zombie process leak causes OOMKill… ([#1322](https://github.com/SolaceLabs/solace-agent-mesh/pull/1322)) (Amir Ghasemi) Medium4/2/2026
1.18.25## Bug Fixes * [`1ae9041`](https://github.com/SolaceLabs/solace-agent-mesh/commit/1ae904122c2dede583c096399c89a96974b55b36) Update solace_ai_connector dependency to version … ([#1305](https://github.com/SolaceLabs/solace-agent-mesh/pull/1305)) (Cyrus Mobini) * [`bf7b7b9`](https://github.com/SolaceLabs/solace-agent-mesh/commit/bf7b7b9f1ec0951dddc72935c28712176f3f679e) test failures ([#1316](https://github.com/SolaceLabs/solace-agent-mesh/pull/1316)) (Amir Ghasemi) Medium4/2/2026
1.18.24## What's Changed * feat(DATAGO-128637): Redesign password input with dirty field tracking by @JKaram in https://github.com/SolaceLabs/solace-agent-mesh/pull/1309 * feat(DATAGO-130230): Inline Progress Timeline & LLM Thinking Tokens in Chat UI by @amir-ghasemi in https://github.com/SolaceLabs/solace-agent-mesh/pull/1280 * chore(DATAGO-129968): Use ID values instead of alias in model config ui routes by @solace-pjones in https://github.com/SolaceLabs/solace-agent-mesh/pull/1298 * fix(DATAGO-13065Medium4/1/2026
1.18.22## Features * [`dae7171`](https://github.com/SolaceLabs/solace-agent-mesh/commit/dae7171ef087e1a455899b1f2f8089542e8b515d) Add model dependents functionality with endpoint… ([#1281](https://github.com/SolaceLabs/solace-agent-mesh/pull/1281)) (Cyrus Mobini) * [`8f81d62`](https://github.com/SolaceLabs/solace-agent-mesh/commit/8f81d6247b4796e1a96b5cb8f3c57d7a7c0780cc) Evaluate the feasibility of making workflows a p… ([#1230](https://github.com/SolaceLabs/solace-agent-mesh/pull/1230)) (Amir GhasemMedium3/31/2026
1.18.21## Bug Fixes * [`7a24b99`](https://github.com/SolaceLabs/solace-agent-mesh/commit/7a24b998a93bce405f8b2d8f2b397785a70fbc8c) repair dangling tool calls at the sesison level ([#1277](https://github.com/SolaceLabs/solace-agent-mesh/pull/1277)) (Amir Ghasemi) ## Continuous Integration * [`cdb67e6`](https://github.com/SolaceLabs/solace-agent-mesh/commit/cdb67e6708e3fe14a531702c05e41f11cc1f3a7f) bump version to ui-v1.86.0 [skip ci] (Automated Version Bump) * [`3bae498`](https://github.com/SolaceLabMedium3/30/2026
1.18.20## Bug Fixes * [`f760050`](https://github.com/SolaceLabs/solace-agent-mesh/commit/f7600501983fd532fc5359051f21304bef72014f) aiohttp ClientSession memory leak in solace-chat-… ([#1276](https://github.com/SolaceLabs/solace-agent-mesh/pull/1276)) (Amir Ghasemi) ## Continuous Integration * [`819393f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/819393f049f35c0a44265da326143482fefd331a) bump version to ui-v1.85.1 [skip ci] (Automated Version Bump) ## UI Changes up to ui-v1.85.1 ### BuMedium3/27/2026
1.18.19## Features * [`fbf2e47`](https://github.com/SolaceLabs/solace-agent-mesh/commit/fbf2e474e45a150ea93437987cc51296c752b8fa) BE | Model Configuration REST api (POST API, fea… ([#1227](https://github.com/SolaceLabs/solace-agent-mesh/pull/1227)) (Paul Jones) * [`dcbbf41`](https://github.com/SolaceLabs/solace-agent-mesh/commit/dcbbf418a247738ad7275a92f563cab7a7e8e12f) BE | Fetch Provider Models ([#1249](https://github.com/SolaceLabs/solace-agent-mesh/pull/1249)) (Paul Jones) * [`79dd611`](https://giMedium3/26/2026
1.18.18## Features * [`931b8f4`](https://github.com/SolaceLabs/solace-agent-mesh/commit/931b8f403275ec42a9116656e7f52a1bd79910b4) Integrate OpenFeature for model configuration UI feature flag m… ([#1243](https://github.com/SolaceLabs/solace-agent-mesh/pull/1243)) (Cyrus Mobini) ## Bug Fixes * [`4e8cd8b`](https://github.com/SolaceLabs/solace-agent-mesh/commit/4e8cd8b9c730c09b3e44143a28508bc030c5eb01) Add missing Azure fields to ArtifactServiceConfig… ([#1232](https://github.com/SolaceLabs/solace-agenMedium3/23/2026
1.18.17## Continuous Integration * [`65a9104`](https://github.com/SolaceLabs/solace-agent-mesh/commit/65a910434799a5d6cc28d5754013436477fa01f7) bump version to ui-v1.75.1 [skip ci] (Automated Version Bump) * [`c169c7e`](https://github.com/SolaceLabs/solace-agent-mesh/commit/c169c7e13727ac3ca417d406e8e3f7db08139bef) bump version to ui-v1.75.2 [skip ci] (Automated Version Bump) ## UI Changes ui-v1.75.1 → ui-v1.75.2 ### Bug Fixes * [`0242dbf`](https://github.com/SolaceLabs/solace-agent-mesh/commit/024Medium3/23/2026
1.18.16## Features * [`6413d09`](https://github.com/SolaceLabs/solace-agent-mesh/commit/6413d09cd97544f4d5c26134bb032a8042d7d9f5) Implement dynamic model provider for services an… ([#1180](https://github.com/SolaceLabs/solace-agent-mesh/pull/1180)) (Cyrus Mobini) * [`20a5219`](https://github.com/SolaceLabs/solace-agent-mesh/commit/20a52193b64ddcbf1f00bdf05186dad6c170e59f) implement dynamic model provider configuration a… ([#1231](https://github.com/SolaceLabs/solace-agent-mesh/pull/1231)) (Cyrus MobinMedium3/23/2026
1.18.15## Features * [`b5f93ea`](https://github.com/SolaceLabs/solace-agent-mesh/commit/b5f93ea5d8d44a874ee20bc14a1b78b5d045b17e) Convert LiteLlm class to support dynamic model p… ([#1138](https://github.com/SolaceLabs/solace-agent-mesh/pull/1138)) (Cyrus Mobini) * [`a6a5671`](https://github.com/SolaceLabs/solace-agent-mesh/commit/a6a567148148e57eb8057a702fb9ed8e70dbf639) implement DynamicModelProvider with lazy-loading… ([#1169](https://github.com/SolaceLabs/solace-agent-mesh/pull/1169)) (Cyrus MobinLow3/20/2026
1.18.14## Bug Fixes * [`f0953a6`](https://github.com/SolaceLabs/solace-agent-mesh/commit/f0953a6ec7d4fc77c94a859d14b8220dddf11e63) Fix dash in agent-name breaking agent configurati… ([#1101](https://github.com/SolaceLabs/solace-agent-mesh/pull/1101)) (Cyrus Mobini) ## Continuous Integration * [`a1e1dc5`](https://github.com/SolaceLabs/solace-agent-mesh/commit/a1e1dc51c6b51c11d02f2bfbb0ba5f5033d79a86) bump version to ui-v1.69.0 [skip ci] (Automated Version Bump) * [`d191ad7`](https://github.com/SolaceLow3/19/2026
1.18.12## Features * [`3ce8488`](https://github.com/SolaceLabs/solace-agent-mesh/commit/3ce84882d6acb662af5c3e54a3bcd12ed8c5d6bc) Add multi-cloud storage support (Azure, GCS work… ([#1140](https://github.com/SolaceLabs/solace-agent-mesh/pull/1140)) (Mohamed Radwan) * [`a2d06b0`](https://github.com/SolaceLabs/solace-agent-mesh/commit/a2d06b0a4ba4874983534ab26bad9103c5710b19) EXPERIMENTAL: Chat Sharing backend ([#1195](https://github.com/SolaceLabs/solace-agent-mesh/pull/1195)) (Amir Ghasemi) ## Bug FiLow3/18/2026
1.18.10## Continuous Integration * [`44f4f70`](https://github.com/SolaceLabs/solace-agent-mesh/commit/44f4f706bf86cbba53e20751393eca444e536b99) bump version to ui-v1.68.0 [skip ci] (Automated Version Bump) * [`d939125`](https://github.com/SolaceLabs/solace-agent-mesh/commit/d939125c97131cce731f2f3ae7c44778a1f49708) bump version to ui-v1.68.1 [skip ci] (Automated Version Bump) ## Performance * [`a37dc5a`](https://github.com/SolaceLabs/solace-agent-mesh/commit/a37dc5a4289b45d96ee69d4f3432b7b31d2d5bd9)Low3/18/2026
1.18.9## Bug Fixes * [`6b45754`](https://github.com/SolaceLabs/solace-agent-mesh/commit/6b4575443a853854948965a6cbfc9ef9fe64738e) Add preliminary sqlite version check before runni… ([#1176](https://github.com/SolaceLabs/solace-agent-mesh/pull/1176)) (dylanwalsh-solace) * [`6795423`](https://github.com/SolaceLabs/solace-agent-mesh/commit/67954231d79694e3f2a8ff154a25b14b077ae709) - Audit Gateway WebUI Alembic Migrations for Dial… ([#1189](https://github.com/SolaceLabs/solace-agent-mesh/pull/1189)) (enaLow3/17/2026
1.18.8## Bug Fixes * [`a3b8823`](https://github.com/SolaceLabs/solace-agent-mesh/commit/a3b882384d8857177811029d08b31b87f358d644) resolve multiple high-severity CVEs ([#1188](https://github.com/SolaceLabs/solace-agent-mesh/pull/1188)) (moodiRealist) ## Continuous Integration * [`dc3a839`](https://github.com/SolaceLabs/solace-agent-mesh/commit/dc3a839eb570bc2a0cf33c6b71dc126f644cd5ab) bump version to ui-v1.67.0 [skip ci] (Automated Version Bump) * [`9020e7e`](https://github.com/SolaceLabs/solace-ageLow3/16/2026
1.18.7## Bug Fixes * [`21c04e0`](https://github.com/SolaceLabs/solace-agent-mesh/commit/21c04e060f01e89ad3b6b260f9e55f3002808eb2) Fix type error in index_search in production ([#1175](https://github.com/SolaceLabs/solace-agent-mesh/pull/1175)) (Amir Ghasemi) * [`7257a58`](https://github.com/SolaceLabs/solace-agent-mesh/commit/7257a586cadb26224a8c12174232bc76160524ab) test ([#1177](https://github.com/SolaceLabs/solace-agent-mesh/pull/1177)) (Amir Ghasemi) * [`63d4c80`](https://github.com/SolaceLabs/soLow3/16/2026
1.18.6## Bug Fixes * [`2e47d8d`](https://github.com/SolaceLabs/solace-agent-mesh/commit/2e47d8d530ba68ff4443796c5a859d704d44851c) upgrade npm to 11.11.1 and pypdf to 6.8.0 to patch CVE-2026-3180… ([#1174](https://github.com/SolaceLabs/solace-agent-mesh/pull/1174)) (Joseph Abonasara) * [`6b45f27`](https://github.com/SolaceLabs/solace-agent-mesh/commit/6b45f27a0d1961f52546eb083e9dc3419c1f3bdf) set component_name in component configs to fix un… ([#1173](https://github.com/SolaceLabs/solace-agent-mesh/puLow3/13/2026
1.18.4## Features * [`b309d8f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/b309d8fa9c11a9d2a5f27fdd8c32b55c5f08ced8) Enhance registry management with re-add function… ([#1110](https://github.com/SolaceLabs/solace-agent-mesh/pull/1110)) (Cyrus Mobini) ## Bug Fixes * [`5a8a69f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/5a8a69f164fd6cf842328e2aefc43cc21c1d2c64) SSE viz queue full log spam: evict oldest message… ([#1098](https://github.com/SolaceLabs/solace-agent-mesh/pull/109Low3/13/2026
1.18.3## Features * [`a39f97a`](https://github.com/SolaceLabs/solace-agent-mesh/commit/a39f97ae26a8916f00b91abac8aeb4a390bbcbb4) Add GET /api/v1/config/features read-only endpoi… ([#1123](https://github.com/SolaceLabs/solace-agent-mesh/pull/1123)) (Benjamin Wiebe) ## Bug Fixes * [`798fd45`](https://github.com/SolaceLabs/solace-agent-mesh/commit/798fd4502a9fc286495d0e856e1fcf7150cd1e2f) Vulnerability Captain - Address high severity CVE… ([#1160](https://github.com/SolaceLabs/solace-agent-mesh/pull/1Low3/9/2026
1.18.2## Features * [`d9cfc40`](https://github.com/SolaceLabs/solace-agent-mesh/commit/d9cfc40a7d838d37dca49ce1add56455abbacf87) Add generic outbox infrastructure ([#1137](https://github.com/SolaceLabs/solace-agent-mesh/pull/1137)) (Mohamed Radwan) ## Bug Fixes * [`70b168d`](https://github.com/SolaceLabs/solace-agent-mesh/commit/70b168db4da9a212b734189d8ba21f762417ef8d) update uv lock ([#1157](https://github.com/SolaceLabs/solace-agent-mesh/pull/1157)) (Amir Ghasemi) ## Continuous Integration * [Low3/9/2026
1.18.1## Features * [`0638971`](https://github.com/SolaceLabs/solace-agent-mesh/commit/0638971635f0d4a33b3de97413af9940fdd192d1) Add support for Bedrock model in init GUI ([#873](https://github.com/SolaceLabs/solace-agent-mesh/pull/873)) (Tamimi Ahmad) * [`fce3c3e`](https://github.com/SolaceLabs/solace-agent-mesh/commit/fce3c3efd5907297d7e2e4869ea063ea626879ef) Implement backend OpenFeature provider (core fra… ([#1122](https://github.com/SolaceLabs/solace-agent-mesh/pull/1122)) (Benjamin Wiebe) * [`1Low3/6/2026
1.18.0## Bug Fixes * [`47fc387`](https://github.com/SolaceLabs/solace-agent-mesh/commit/47fc387eda31a9c2f6559295642eff3ee7567415) implement lazy imports to improve CLI startup per… ([#1087](https://github.com/SolaceLabs/solace-agent-mesh/pull/1087)) (Cyrus Mobini) * [`2fc4764`](https://github.com/SolaceLabs/solace-agent-mesh/commit/2fc47649dbb35d322a72b7f4a3f7444732d01bd7) upgrade sac ([#1126](https://github.com/SolaceLabs/solace-agent-mesh/pull/1126)) (Amir Ghasemi) ## Continuous Integration * [`0Low3/3/2026
1.17.8## Features * [`f47e7b7`](https://github.com/SolaceLabs/solace-agent-mesh/commit/f47e7b750c8af5a13735eb8b5346599971682e8f) Update default Gemini image model to gemini-3.1-… ([#1104](https://github.com/SolaceLabs/solace-agent-mesh/pull/1104)) (Amir Ghasemi) ## Bug Fixes * [`6e9a0b2`](https://github.com/SolaceLabs/solace-agent-mesh/commit/6e9a0b2cafbea14a62284155165d56ff216c3ddc) update artifact copy util to optionally overwrite project files … ([#1077](https://github.com/SolaceLabs/solace-agenLow3/2/2026
1.17.7## Bug Fixes * [`08f7544`](https://github.com/SolaceLabs/solace-agent-mesh/commit/08f7544f4643d4215ec7385741bf0402040b3577) Optimize persistent SSE buffer flush with batch i… ([#1079](https://github.com/SolaceLabs/solace-agent-mesh/pull/1079)) (Amir Ghasemi) Low2/25/2026
1.17.6## Features * [`fd4107f`](https://github.com/SolaceLabs/solace-agent-mesh/commit/fd4107f0edb21bb7fe224658b5fbea547631cad4) Update SAM solace-ai-connector dependency to 3.… ([#1072](https://github.com/SolaceLabs/solace-agent-mesh/pull/1072)) (Amir Ghasemi) * [`4019ef1`](https://github.com/SolaceLabs/solace-agent-mesh/commit/4019ef197302cf6d3a8cec139f3a780fd3defc25) Add generic object storage abstraction ([#1076](https://github.com/SolaceLabs/solace-agent-mesh/pull/1076)) (Mohamed Radwan) ## BuLow2/25/2026
1.17.4## Bug Fixes * [`15e2811`](https://github.com/SolaceLabs/solace-agent-mesh/commit/15e28110756e1603f4e437f482e788635ace56b3) Callback was passed as {"callback": callback} dict instead of ca… ([#1069](https://github.com/SolaceLabs/solace-agent-mesh/pull/1069)) (Amir Ghasemi) Low2/24/2026
1.17.3## Bug Fixes * [`e085e7d`](https://github.com/SolaceLabs/solace-agent-mesh/commit/e085e7d33b2b287415fb2a68fac440cc252c9a64) Trust Manager initialization fails for GenericGat… ([#1068](https://github.com/SolaceLabs/solace-agent-mesh/pull/1068)) (Amir Ghasemi) Low2/23/2026
1.17.2## Bug Fixes * [`ddcb923`](https://github.com/SolaceLabs/solace-agent-mesh/commit/ddcb923af54fadbcc494e05755b54dbdd5574c31) broken docs links to SolaceDev repo ([#1058](https://github.com/SolaceLabs/solace-agent-mesh/pull/1058)) (Michael Du Plessis) * [`c6e0e72`](https://github.com/SolaceLabs/solace-agent-mesh/commit/c6e0e72c0a2a25e32c381f285510e93810b7e27e) broken docs links to workflow examples ([#1059](https://github.com/SolaceLabs/solace-agent-mesh/pull/1059)) (Michael Du Plessis) * [`79940Low2/23/2026
1.17.1## Features * [`25fa9e4`](https://github.com/SolaceLabs/solace-agent-mesh/commit/25fa9e4220647f0a77994a2a4a1540294163552d) New tool framework with reduced boilerplate and … ([#836](https://github.com/SolaceLabs/solace-agent-mesh/pull/836)) (Edward Funnekotter) * [`7e21f8d`](https://github.com/SolaceLabs/solace-agent-mesh/commit/7e21f8d935a1eb2b8150d542fea1e8f298130cc3) Document eval test instruction ([#954](https://github.com/SolaceLabs/solace-agent-mesh/pull/954)) (Ali Parvizi) ## Bug Fixes Low2/20/2026
1.17.0## Features * [`f51d72d`](https://github.com/SolaceLabs/solace-agent-mesh/commit/f51d72d8e189f42e95bee4760e920cc4492f8d57) Add ssl_verify config option for A2A proxy ([#838](https://github.com/SolaceLabs/solace-agent-mesh/pull/838)) (Greg Meldrum) * [`ac438f6`](https://github.com/SolaceLabs/solace-agent-mesh/commit/ac438f6140d4fe41fe0a71b73572b56a35fff97c) add SSL/TLS configuration support for MCP connec… ([#857](https://github.com/SolaceLabs/solace-agent-mesh/pull/857)) (Greg Meldrum) * [`b1b3Low2/17/2026
1.15.37## Bug Fixes * [`c8df09a`](https://github.com/SolaceLabs/solace-agent-mesh/commit/c8df09ae13ff6a3266bdbe457268748d1ca02932) vulnerability with cryptography (Art Morozov) Low2/11/2026
1.15.36## Bug Fixes * [`8f1a9a3`](https://github.com/SolaceLabs/solace-agent-mesh/commit/8f1a9a35cbb0262c26a006c00887cb0ff75f67b3) ensure chat input scrolls ([#1004](https://github.com/SolaceLabs/solace-agent-mesh/pull/1004)) (Linda Hillis) * [`045a715`](https://github.com/SolaceLabs/solace-agent-mesh/commit/045a7153c6795211f7abac8989475dc8e7a8ba39) Investigate missing responses in a2a and normal a… (Amir Ghasemi) Low2/10/2026
1.16.4## Bug Fixes * [`9ed12a2`](https://github.com/SolaceLabs/solace-agent-mesh/commit/9ed12a2a8dc0aa7face0e154a4bacf272a9d7a0f) explicit type conversion ([#999](https://github.com/SolaceLabs/solace-agent-mesh/pull/999)) (Amir Ghasemi) * [`ef76f80`](https://github.com/SolaceLabs/solace-agent-mesh/commit/ef76f80b9ff95cc34da17c42f35c5f3021d8212c) row locking during fetch ([#1002](https://github.com/SolaceLabs/solace-agent-mesh/pull/1002)) (Amir Ghasemi) ## Continuous Integration * [`584e775`](https:Low2/9/2026
1.15.34## Bug Fixes * [`82556d6`](https://github.com/SolaceLabs/solace-agent-mesh/commit/82556d6cc55b2cc6ba5a4b3c1f9e6f09b8c54b06) replay SSE buffer for incomplete artifacts on session switch (#1… (Amir Ghasemi) * [`dcc42f0`](https://github.com/SolaceLabs/solace-agent-mesh/commit/dcc42f03cf2912ae5a5b99479483c3b670ebb437) row locking during fetch ([#1002](https://github.com/SolaceLabs/solace-agent-mesh/pull/1002)) (Amir Ghasemi) ## Chores * [`bd8f889`](https://github.com/SolaceLabs/solace-agent-mesh/Low2/9/2026
1.15.30## Bug Fixes * [`5f21658`](https://github.com/SolaceLabs/solace-agent-mesh/commit/5f2165855d0f06722c5100b26525e2afb3e856a5) - fix vulnerabilities for curl, libstan , isaac/b… (enavitan) Low2/8/2026
1.16.3## Bug Fixes * [`ee591da`](https://github.com/SolaceLabs/solace-agent-mesh/commit/ee591dac1fd4dff62b23abec7ad6acde1fb15559) Investigate and resolve prompt import error ([#976](https://github.com/SolaceLabs/solace-agent-mesh/pull/976)) (Amir Ghasemi) ## Continuous Integration * [`f61a19b`](https://github.com/SolaceLabs/solace-agent-mesh/commit/f61a19bbf3286790143d1df199c05e9b8c7582cb) fix rc check in sam community release ([#990](https://github.com/SolaceLabs/solace-agent-mesh/pull/990)) (Art Low2/8/2026
1.15.29## Bug Fixes * [`f13327e`](https://github.com/SolaceLabs/solace-agent-mesh/commit/f13327e21b687f79e96abf4f4fad707df46aff74) Investigate and resolve prompt import error ([#976](https://github.com/SolaceLabs/solace-agent-mesh/pull/976)) (Amir Ghasemi) ## Chores * [`97d34fe`](https://github.com/SolaceLabs/solace-agent-mesh/commit/97d34fe5d908d05c06dcc0bbe473ee24901d71d8) updating only tailwind ([#992](https://github.com/SolaceLabs/solace-agent-mesh/pull/992)) (Linda Hillis) * [`b4fc318`](https:/Low2/7/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

summoner-agentsA collection of Summoner clients and agents featuring example implementations and reusable templatesv1.1.0
AgentAgent! connects any AI to your Mac. 13 LLM providers — cloud, local, or on-device. It writes code, builds Xcode projects, manages git, organizes files, automates Safari, controls any app, and handlv1.0.88.182
ag2AG2 (formerly AutoGen): The Open-Source AgentOS.Join us at: https://discord.gg/sNGSwQME3xv0.13.3
samplesAgent samples built using the Strands Agents SDK.main@2026-06-04
nexentNexent is a zero-code platform for auto-generating production-grade AI agents using Harness Engineering principles — unified tools, skills, memory, and orchestration with built-in constraints, feedbacv2.2.0

More in MCP Servers

AstrBotAgentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
agentscopeBuild and run agents you can see, understand and trust.
claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme