Metadata-Version: 2.4
Name: loop-mcp
Version: 0.4.0
Summary: MCP server for automated loop engineering in AI coding workflows
Project-URL: Homepage, https://github.com/arjun988/Loop-Engineering
Project-URL: Documentation, https://github.com/arjun988/Loop-Engineering#readme
Project-URL: Repository, https://github.com/arjun988/Loop-Engineering
Project-URL: Issues, https://github.com/arjun988/Loop-Engineering/issues
Author: Loop Engineering Contributors
License-Expression: MIT
Keywords: agents,ai,automation,coding,loop-engineering,mcp
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: aiofiles>=23.0.0
Requires-Dist: croniter>=2.0.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp>=0.9.0
Requires-Dist: pydantic>=2.0.0
Provides-Extra: dev
Requires-Dist: black>=23.0.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Description-Content-Type: text/markdown

# Loop Engineering MCP Server (Python)

Python implementation of the Loop Engineering MCP server.

## Installation

### Using uvx (recommended - no installation needed)

```bash
uvx loop-mcp
```

### Using pip

```bash
pip install loop-mcp
```

## Configuration

Add to your MCP configuration file:

**Cursor** (`.cursor/mcp.json`):
```json
{
  "mcpServers": {
    "loop-engineering": {
      "command": "uvx",
      "args": ["loop-mcp"]
    }
  }
}
```

**Kiro** (`.kiro/settings/mcp.json`):
```json
{
  "mcpServers": {
    "loop-engineering": {
      "command": "uvx",
      "args": ["loop-mcp"]
    }
  }
}
```

**Claude Desktop**:
- Mac: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`

```json
{
  "mcpServers": {
    "loop-engineering": {
      "command": "uvx",
      "args": ["loop-mcp"]
    }
  }
}
```

## Development

```bash
cd python
pip install -e ".[dev]"
pytest
```

## License

MIT
