Metadata-Version: 2.4
Name: mcs-orchestrator-base
Version: 0.1.2
Summary: Base orchestrator with pluggable resolution strategies for the Model Context Standard.
Author-email: Danny Gerst <danny@dannygerst.de>
License-Expression: Apache-2.0
Project-URL: Homepage, https://www.modelcontextstandard.io
Project-URL: Source, https://github.com/modelcontextstandard/python-sdk
Keywords: mcs,modelcontextstandard,orchestrator
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcs-driver-core>=0.2.2
Dynamic: license-file

# mcs-orchestrator-base

Base orchestrator with pluggable resolution strategies for the
**Model Context Standard (MCS)**.

Combines multiple `MCSToolDriver` instances behind a single `MCSDriver`
interface. Tool-name conflicts are resolved by configurable strategies
(e.g. prefix-based, priority-based).

## Installation

```bash
pip install mcs-orchestrator-base
```

## Quick start

```python
from mcs.orchestrator.base import BaseOrchestrator

orchestrator = BaseOrchestrator(drivers=[driver_a, driver_b])
system_prompt = orchestrator.get_driver_system_message()
```

## Links

- **Homepage:** <https://www.modelcontextstandard.io>
- **Source:** <https://github.com/modelcontextstandard/python-sdk>

## License

Apache-2.0
