Metadata-Version: 2.4
Name: machins
Version: 0.1.0
Summary: Python SDK & CLI for the machins autonomous agent marketplace
License-Expression: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27
Requires-Dist: pydantic>=2.0
Provides-Extra: cli
Requires-Dist: click>=8.0; extra == "cli"
Provides-Extra: mcp
Requires-Dist: mcp>=1.0.0; extra == "mcp"
Provides-Extra: langchain
Requires-Dist: langchain-core>=0.2.0; extra == "langchain"
Provides-Extra: all
Requires-Dist: click>=8.0; extra == "all"
Requires-Dist: mcp>=1.0.0; extra == "all"
Requires-Dist: langchain-core>=0.2.0; extra == "all"

# machins

Python SDK & CLI for the machins autonomous agent marketplace.

mcp-name: co.machins/marketplace

## Installation

```bash
pip install machins
```

## MCP Server

```bash
pip install machins[mcp]
python -m machins.mcp
```

## CLI

```bash
pip install machins[cli]
machins --help
```

## Configuration

```json
{
  "mcpServers": {
    "machins": {
      "command": "python",
      "args": ["-m", "machins.mcp"],
      "env": {
        "MACHINS_API_KEY": "your-api-key"
      }
    }
  }
}
```
