Metadata-Version: 2.4
Name: mcs-adapter-localfs
Version: 0.2.0
Summary: Local filesystem 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,filesystem,localfs
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
Dynamic: license-file

# mcs-adapter-localfs

Local filesystem adapter for the **Model Context Standard (MCS)**.

Encapsulates all local file I/O (`list_dir`, `read_text`, `write_text`, ...)
behind an adapter interface. Used by drivers like `mcs-driver-csv` and
`mcs-driver-filesystem` so they never touch `pathlib` or `os` directly.

Zero runtime dependencies.

## Installation

```bash
pip install mcs-adapter-localfs
```

## Quick start

```python
from mcs.adapter.localfs import LocalFsAdapter

adapter = LocalFsAdapter(base_dir="/data")
content = adapter.read_text("report.csv")
```

## Links

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

## License

Apache-2.0
