Metadata-Version: 2.4
Name: codesecure-mcp
Version: 1.0.13
Summary: CodeSecure MCP Server Hub
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: codesecure-core
Requires-Dist: mcp>=1.0.0
Requires-Dist: fastmcp>=0.1.0

# CodeSecure MCP Server
Model Context Protocol server for CodeSecure.

This package enables Large Language Models (LLMs) to perform security scans and provide remediation directly within MCP-compatible environments (like Claude Desktop or VS Code).

### Installation
```bash
pip install codesecure-mcp
```

### Usage
Add this to your MCP configuration (e.g., `claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "codesecure": {
      "command": "python",
      "args": ["-m", "codesecure_mcp"]
    }
  }
}
```

### Tools provided
- `scan_file`: Analyze a single file for vulnerabilities.
- `scan_workspace`: Perform a full project audit.
- `enrich_findings`: Use AI to generate remediation code for security issues.

### Requirements
- Python 3.9+
- An MCP host environment.
