Metadata-Version: 2.4
Name: tendem-mcp
Version: 0.1.1.post1
Summary: MCP server for Tendem task management API
Project-URL: Homepage, https://tendem.ai
Project-URL: Repository, https://github.com/toloka/tendem-mcp
Author: alexdrydew
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: ai,mcp,task-management,tendem
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.13
Requires-Python: <3.14,>=3.13
Requires-Dist: fastmcp>=2.0
Requires-Dist: httpx>=0.28
Requires-Dist: pydantic>=2.0
Description-Content-Type: text/markdown

# tendem-mcp

MCP server for [Tendem](https://tendem.ai/) - a platform for human-in-the-loop data tasks.

## Quickstart

### Claude Code

```bash
claude mcp add tendem -e TENDEM_API_KEY=<your-api-key> -- uvx tendem-mcp
```

### Claude Desktop

Add to `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "tendem": {
      "command": "uvx",
      "args": ["tendem-mcp"],
      "env": {
        "TENDEM_API_KEY": "<your-api-key>"
      }
    }
  }
}
```

Config location:
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`

### OpenAI Codex

```bash
codex mcp add tendem --env TENDEM_API_KEY=<your-api-key> -- uvx tendem-mcp
```

### OpenCode

Add to `opencode.json`:

```json
{
  "mcp": {
    "tendem": {
      "type": "local",
      "command": ["uvx", "tendem-mcp"],
      "environment": {
        "TENDEM_API_KEY": "<your-api-key>"
      }
    }
  }
}
```
