# subradar

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add colossal-api/subradar

# Browse available tools
npx -y @smithery/cli@latest tool list colossal-api/subradar

# Get full schema for a tool
npx -y @smithery/cli@latest tool get colossal-api/subradar detect_subscriptions

# Call a tool
npx -y @smithery/cli@latest tool call colossal-api/subradar detect_subscriptions '{}'
```

## Direct MCP Connection

Endpoint: `https://subradar--colossal-api.run.tools`

## Tools (8)

- `detect_subscriptions` — Use this tool to analyze a user's bank transactions and identify recurring subscription charges. It uses four detection…
- `list_subscriptions` — Use this tool to retrieve all tracked subscriptions for a user. Returns merchant name, amount, frequency, next charge d…
- `add_subscription` — Use this tool to manually add a known subscription to a user's tracking list. Useful when the user knows about a subscr…
- `remove_subscription` — Use this tool to permanently remove a subscription from a user's tracking list. This does NOT cancel the subscription w…
- `update_subscription` — Use this tool to update the status or details of a tracked subscription. Most commonly used to mark a subscription as "…
- `get_cancellation_info` — Use this tool to look up step-by-step cancellation instructions for a specific merchant. Returns: cancel URL, phone num…
- `draft_cancellation_message` — Use this tool to generate a ready-to-send cancellation email or phone script for a given merchant. For "email" format: …
- `get_analytics` — Use this tool to get a complete financial picture of a user's subscription spend. Returns: total monthly spend, project…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get colossal-api/subradar <tool-name>
```
