Free Tier MCP Tools

Reference for the 5 MCP tools available in free tier

Overview

Free tier includes 5 MCP tools for managing local todos. These work without a Pro subscription.

panelTodo_add

Add a new local todo.

panelTodo_add({ text: "Fix the login bug" })
text string (required) The todo text

panelTodo_list

List all local todos.

panelTodo_list()

Returns an array of todos with id, text, createdAt, and completed status.

panelTodo_update

Update the text of an existing todo.

panelTodo_update({
  id: "todo-uuid",
  text: "Updated todo text"
})
id string (required) Todo ID
text string (required) New todo text

panelTodo_complete

Mark a todo as complete and remove it.

panelTodo_complete({ id: "todo-uuid" })
id string (required) Todo ID

panelTodo_remove

Remove a todo without marking it complete.

panelTodo_remove({ id: "todo-uuid" })
id string (required) Todo ID

Example Workflow

// Add todos
panelTodo_add({ text: "Research auth options" })
panelTodo_add({ text: "Implement login" })
panelTodo_add({ text: "Add tests" })

// Check the list
panelTodo_list()

// Complete one
panelTodo_complete({ id: "first-todo-id" })

// Update another
panelTodo_update({ id: "second-id", text: "Implement OAuth login" })

Related Articles