# Ticker

> Ticker is a focus-friendly habit tracker and todo manager with first-class Model Context Protocol (MCP) support. AI assistants — Claude, ChatGPT, Cursor — can read, reason over, and create the user's tasks directly. Daily streaks use forgiving grace periods (a missed day or two doesn't break the streak), todo capture is two seconds, and visual cues replace nagging notifications. Built for neurodivergent minds and anyone who finds rigid productivity systems exhausting. Part of the Tazzen ecosystem.

Monday triage in 5 minutes instead of 30: the user's AI rebuilds their state — what is overdue, blocked, slipping — without the user having to explain it. AI assistants and integrations act on the user's behalf via two transports: a REST API and a Model Context Protocol (MCP) server. Pick whichever fits your client.

All write actions require a Personal Access Token issued by Tazzen Identity. There is no anonymous mutation. The user picks scopes (`habits:read`, `habits:write`, `todos:read`, `todos:write`, `categories:read`, `categories:write`) when they create a token and can revoke it in one click. Each token's API and MCP activity is logged so the user can audit what every connected agent did.

## API

- [REST API base URL](https://ticker.tazzen.com/api/v1): JSON over HTTPS. Resources: habits, todos, categories. Standard CRUD with paginated lists, rate-limited 60 requests per minute per token.
- [API documentation (markdown)](https://ticker.tazzen.com/api-docs.md): Full reference, preferred for AI agents.
- [API documentation (rendered)](https://ticker.tazzen.com/api-docs): Human-readable HTML version.

## MCP

- [MCP server endpoint](https://ticker.tazzen.com/mcp): Model Context Protocol over HTTPS POST (JSON-RPC). Compatible with Claude Desktop, ChatGPT, Cursor, n8n, and any MCP-aware client. Bearer-token authenticated, 60 requests per minute per token. Tools: `get-today-habits`, `get-pending-todos`, `create-todo`, `create-habit`, `toggle-todo` (destructive), `update-todo` (destructive), `delete-todo` (destructive), `complete-habit` (destructive). Destructive tools advertise the standard MCP `destructiveHint` annotation.

## Authentication

- [Personal Access Tokens](https://account.tazzen.com/profile/api-tokens): Create, scope, and revoke tokens at Tazzen Identity.

## Discovery

- [About Ticker](https://ticker.tazzen.com/about): Public landing with full feature list and trust info.
- [Pricing (markdown)](https://ticker.tazzen.com/pricing.md): Plans, limits, and prices — machine-readable for AI agents comparing tools. API and MCP access are per-tier features listed here.

## Optional

- [sitemap.xml](https://ticker.tazzen.com/sitemap.xml): Every public URL for crawler convenience.
