Metadata-Version: 2.4
Name: mcp-coder-utils
Version: 0.1.3
Summary: Shared low-level Python helpers (subprocess, logging, fs) for the mcp-coder family of repos
Author-email: Marcus Jellinghaus <Marcus@Jellinghaus.ch>
Project-URL: Homepage, https://github.com/MarcusJellinghaus/mcp-coder-utils
Project-URL: Repository, https://github.com/MarcusJellinghaus/mcp-coder-utils
Project-URL: Bug Tracker, https://github.com/MarcusJellinghaus/mcp-coder-utils/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: structlog>=23.2.0
Requires-Dist: python-json-logger>=3.3.0
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-xdist; extra == "test"
Provides-Extra: dev
Requires-Dist: mcp-coder-utils[test]; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: isort>=5.12.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: pylint>=3.0.0; extra == "dev"
Requires-Dist: ruff>=0.9.0; extra == "dev"
Requires-Dist: vulture>=2.14; extra == "dev"
Requires-Dist: import-linter>=2.0; extra == "dev"
Requires-Dist: mcp-coder; extra == "dev"
Requires-Dist: mcp-tools-py; extra == "dev"
Requires-Dist: mcp-workspace; extra == "dev"
Dynamic: license-file

# mcp-coder-utils

Shared low-level Python helpers (subprocess, logging, fs) for the mcp-coder family of repos.

Leaf library: no internal dependencies, language-agnostic, safe to import from any MCP server or client in the mcp-coder ecosystem.

## Install

```bash
pip install mcp-coder-utils
```

## Development

```bash
tools\reinstall_local.bat
```

This creates a local `.venv`, installs the package in editable mode with dev dependencies, and overrides the sibling repos (`mcp-coder`, `mcp-tools-py`, `mcp-workspace`) with their latest GitHub versions.

## Related repos

- [mcp_coder](https://github.com/MarcusJellinghaus/mcp_coder) — CLI client and workflows
- [mcp-tools-py](https://github.com/MarcusJellinghaus/mcp-tools-py) — MCP server: Python code checks
- [mcp-workspace](https://github.com/MarcusJellinghaus/mcp-workspace) — MCP server: file operations
- [mcp-config](https://github.com/MarcusJellinghaus/mcp-config) — MCP client config CLI
