Metadata-Version: 2.4
Name: disk-expansion-precheck
Version: 0.1.1
Summary: A minimal MCP Server for disk expansion precheck experiments.
Keywords: mcp,model-context-protocol,disk,precheck
Author: tryp0xy1us
Author-email: tryp0xy1us <tryp0xy1us@outlook.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: mcp[cli]>=1.26.0
Requires-Python: >=3.12
Project-URL: Homepage, https://github.com/tryp0xy1us/disk-expansion-precheck
Project-URL: Repository, https://github.com/tryp0xy1us/disk-expansion-precheck
Project-URL: Issues, https://github.com/tryp0xy1us/disk-expansion-precheck/issues
Description-Content-Type: text/markdown

# disk-expansion-precheck

A minimal MCP Server built with the official Python MCP SDK.

## Features

- Runs locally over `stdio`
- Exposes one MCP tool: `disk_expansion_precheck`
- Can be launched with `uvx disk-expansion-precheck`

## Tool

### `disk_expansion_precheck`

Returns a simple test string message.

Inputs:

- none

Output:

- string message

## Requirements

- Python 3.12+
- `uv` installed locally

## Run Locally

Use `uvx` after publishing the package:

```bash
uvx disk-expansion-precheck
```

Or run from source in the project directory:

```bash
uv run disk-expansion-precheck
```

## Cherry Studio Config

If you want to connect this server in Cherry Studio with `stdio`, use:

- Command: `uvx`
- Arguments: `disk-expansion-precheck`

Equivalent JSON-style config:

```json
{
  "mcpServers": {
    "disk-expansion-precheck": {
      "command": "uvx",
      "args": ["disk-expansion-precheck"]
    }
  }
}
```

## Package

This project is packaged for publishing to PyPI and local installation via `uvx`.

Source code lives in:

- `src/disk_expansion_precheck`
