Metadata-Version: 2.4
Name: mcs-adapter-http
Version: 0.3.0
Summary: HTTP transport adapter 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,adapter,http,transport
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-types-http>=0.1
Requires-Dist: requests>=2.32
Dynamic: license-file

# mcs-adapter-http

HTTP transport adapter for the **Model Context Standard (MCS)**.

Wraps the `requests` library behind a clean adapter interface so that
drivers like `mcs-driver-rest` can make HTTP calls without depending on
a specific HTTP client.

## Installation

```bash
pip install mcs-adapter-http
```

## Quick start

```python
from mcs.adapter.http import HttpAdapter

adapter = HttpAdapter()
response = adapter.get("https://api.example.com/users")
```

## Links

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

## License

Apache-2.0
