Metadata-Version: 2.1
Name: pyscn-mcp
Version: 1.8.0
Summary: MCP (Model Context Protocol) server for pyscn Python code analyzer
Home-page: https://github.com/ludo-technologies/pyscn
Author: DaisukeYoda
Author-email: daisukeyoda@users.noreply.github.com
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
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 :: Quality Assurance
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pyscn-mcp

MCP (Model Context Protocol) server for pyscn Python code analyzer.

## Installation

```bash
# Install via pipx (recommended)
pipx install pyscn-mcp

# Or with uv
uvx pyscn-mcp

# Or with pip
pip install pyscn-mcp
```

## Usage

### As MCP Server

Configure in your MCP client (e.g., Claude Desktop):

```json
{
  "mcpServers": {
    "pyscn-mcp": {
      "command": "uvx",
      "args": ["pyscn-mcp"],
      "env": {
        "PYSCN_CONFIG": "/path/to/.pyscn.toml"
      }
    }
  }
}
```

### Standalone

```bash
pyscn-mcp
```

## Documentation

For full documentation, visit the [pyscn repository](https://github.com/ludo-technologies/pyscn).

## License

MIT License - see the [LICENSE](../../LICENSE) file for details.
