Metadata-Version: 2.4
Name: mcs-orchestrator-rest
Version: 0.2.1
Summary: Dynamic REST/OpenAPI orchestrator 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,rest,openapi
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.1
Requires-Dist: mcs-orchestrator-base>=0.1
Requires-Dist: mcs-adapter-http>=0.2
Requires-Dist: mcs-driver-rest>=0.2
Dynamic: license-file

# mcs-orchestrator-rest

Dynamic REST/OpenAPI orchestrator for the **Model Context Standard (MCS)**.

Manages multiple OpenAPI connections, each backed by a `RestToolDriver`.
Automatically resolves tool names across APIs using the base orchestrator's
strategy system.

## Installation

```bash
pip install mcs-orchestrator-rest
```

## Quick start

```python
from mcs.orchestrator.rest import RestOrchestrator

orchestrator = RestOrchestrator(connections=[
    {"url": "https://api.github.com", "include_tags": ["repos"]},
    {"url": "https://api.stripe.com/openapi.json"},
])
system_prompt = orchestrator.get_driver_system_message()
```

## Links

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

## License

Apache-2.0
