Getting Started

Get up and running with TR-1 — task management for humans and AI agents.

What is TR-1?

TR-1 is a GTD-inspired task management system with a built-in MCP server. It lets humans and AI agents work from the same task list — creating, organizing, completing, and reviewing tasks through a shared system.

The web app is at tr1.fieldbw.com. Sign up for an account to get started.

Using the App

TR-1 is keyboard-first. Press Ctrl+N to capture tasks, use arrow keys to navigate, and single-key shortcuts to act on tasks (e.g., X to complete, N to move to Next Actions, M to open the Move panel).

For the full interface guide, keyboard shortcuts, and feature overview, see Using TR-1.

Connecting AI Agents

Connect any MCP-compatible client (Claude Code, Claude Desktop, Cursor, ChatGPT) with a single URL. Agents get 40+ tools to manage tasks, projects, and reviews.

claude mcp add --transport http tr1 https://tr1.fieldbw.com/mcp

Most MCP clients handle OAuth automatically — just add the URL and sign in when prompted.

For API key auth:

claude mcp add --transport http tr1 https://tr1.fieldbw.com/mcp \
  -h "Authorization: Bearer YOUR_KEY"

See the MCP Tools Reference for the full list of 40+ tools.

REST API

Standard JSON API for scripts, integrations, and custom tooling.

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://tr1.fieldbw.com/api/v1/inbox

See the REST API Reference for all endpoints.

Authentication

OAuth (recommended for MCP): Most MCP clients handle this automatically. Just add the URL and sign in when prompted.

API keys: Generate in the app under Account → API Keys. Pass as a Bearer token. Good for scripts and clients that don’t support OAuth.

Session cookies: The web UI uses session-based auth. Not recommended for integrations.

Core Concepts

ConceptDescription
TaskA single action item with status, project, dates, energy, priority
ProjectAn outcome requiring multiple tasks. Has its own status and tasks.
AreaAn ongoing area of responsibility. Contains projects.
Statusinbox, next, waiting, scheduled, someday, completed
Today flagMarks a task for today’s focus. Independent of status.
In ProgressMarks a task as actively being worked on.

Next Steps