Tasks Timeline

approved

by leonezz

View and manage vault tasks on a timeline. - This plugin has not been manually reviewed by Obsidian staff.

3 stars366 downloadsUpdated 25d ago0BSD

Tasks Timeline

Tasks Timeline shows and manages task items in an Obsidian vault. It is a continuation of obsidian-tasks-calendar-wrapper, based on tasks-timeline-components.

MCP server

The plugin includes a built-in Model Context Protocol (MCP) server that lets AI agents read and write tasks in your vault.

Setup

  1. Open Settings > Tasks Timeline > MCP server
  2. Toggle Enable MCP server on
  3. The server starts on http://127.0.0.1:27182/mcp (port is configurable)

Connecting AI clients

Add the following to your MCP client configuration (e.g. Claude Desktop, Claude Code, Cursor):

{
  "mcpServers": {
    "tasks-timeline": {
      "url": "http://127.0.0.1:27182/mcp"
    }
  }
}

Bearer-token auth is enabled by default. Copy the token from Settings > Tasks Timeline > MCP server and configure it as an Authorization: Bearer <token> header in clients that support HTTP MCP headers.

Available Tools

ToolDescription
query_tasksSearch and filter tasks by status, category, tags, date range, and free-text
create_taskCreate a new task with title, priority, dates, tags, and recurrence
update_taskUpdate an existing task by ID (partial updates supported)
delete_taskDelete a task by ID
complete_taskMark a task as done (handles recurring tasks)
cancel_taskCancel a task or recurring series
batch_update_tasksUpdate multiple tasks matching a filter
get_task_statsGet aggregate statistics (counts by status, priority, category)
get_today_planGet tasks due today and overdue tasks sorted by priority

Available Resources

ResourceURIDescription
All Taskstasks://allList of all tasks
Task by IDtasks://taskRetrieve a single task
Overduetasks://overdueTasks that are past due
Todaytasks://todayTasks due or starting today
Upcomingtasks://upcomingTasks due in the next 7 days
Statstasks://statsAggregate task statistics

Available Prompts

PromptDescription
plan_my_dayReview today's tasks and create a prioritized daily plan
weekly_reviewReview task progress and suggest priorities for next week
task_triageIdentify stale tasks and suggest actions

For plugin developers

Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.