Metadata-Version: 2.4
Name: mcp-serverchan-turbo
Version: 0.1.0
Summary: ServerChan Turbo push notification MCP server
License-Expression: MIT
Project-URL: Homepage, https://github.com/zhengxiaowai/mcps
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: fastmcp>=2.0
Requires-Dist: httpx
Requires-Dist: loguru

# mcp-serverchan-turbo

ServerChan Turbo push notification MCP server.

## Install

```bash
uvx mcp-serverchan-turbo
```

## Configuration

Set the `SCT_API_URL` environment variable to your ServerChan Turbo push URL:

```
SCT_API_URL=https://sctapi.ftqq.com/<your-key>.send
```

## Tools

### send

Send a push notification via ServerChan Turbo.

| Parameter | Required | Description |
|-----------|----------|-------------|
| title     | Yes      | Notification title (max 32 chars) |
| desp      | No       | Notification body, supports Markdown (max 32KB) |
| short     | No       | Short description for card preview (max 64 chars) |

## Claude Desktop Integration

```json
{
  "mcpServers": {
    "serverchan-turbo": {
      "command": "uvx",
      "args": ["mcp-serverchan-turbo"],
      "env": {
        "SCT_API_URL": "https://sctapi.ftqq.com/<your-key>.send"
      }
    }
  }
}
```
