Togello MCP Server

MCP server for Togello tasks, calendar memos, calendar events, and activity logs.

Local serverstdio

What is the Togello MCP server?

If you want an AI assistant working directly with Togello, the togello mcp server is the bridge. MCP server for Togello tasks, calendar memos, calendar events, and activity logs.

What Togello does

Togello MCP Server exposes Togello tasks, categories, calendar memos, Google Calendar events, activity items, and activity logs through the Model Context Protocol.

Tools it exposes

Once connected, the assistant can call these 12 tools directly:

  • get-tasks-list — Retrieves TODO tasks. By default it retrieves incomplete tasks. Optional categoryUUIDs filters by category UUID. Use completionStatus: "COMPLETED" with both
  • get-calendar-date-memo — Retrieves a calendar date memo for a YYYY-MM-DD date
  • get-todo-category-list — Retrieves TODO categories
  • get-today-calendar — Retrieves linked Google Calendar events and scheduled tasks
  • get-activity-item-list — Retrieves enabled activity items
  • get-activity-log-list — Retrieves activity logs
  • get-japan-current-time — Returns the current time in Japan
  • create-task — Creates a TODO task
  • update-task — Updates a TODO task, including category assignment or removal
  • update-calendar-date-memo — Updates or clears a calendar date memo
  • start-activity-log — Starts an activity log
  • complete-activity-log — Completes an activity log

Installing the togello mcp server

The server is distributed via npm as npm, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 5 environment variables: TOGELLO_API_TOKEN, TOGELLO_MCP_HOST, TOGELLO_API_BASE_URL, TOGELLO_MCP_OPENAI_APPS_CHALLENGE_TOKEN, OPENAI_APPS_CHALLENGE_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Node.js 22 or later - A Togello API token

Where it fits

Productivity servers pay off through capture: the tasks and notes that never get filed are the ones where opening the app is more friction than the thought is worth. Togello sits in that group, and the shape of its toolset — get-tasks-list, get-calendar-date-memo, get-todo-category-list among others — tells you what it is really for. Worth comparing against the other productivity servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 12 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Togello.
  • Maintained by Toru-Takagi.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the togello mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
get-tasks-listRetrieves TODO tasks. By default it retrieves incomplete tasks. Optional categoryUUIDs filters by category UUID. Use completionStatus: "COMPLETED" with both completedStartDate and completedEndDate in RFC3339 format to re
get-calendar-date-memoRetrieves a calendar date memo for a YYYY-MM-DD date.
get-todo-category-listRetrieves TODO categories.
get-today-calendarRetrieves linked Google Calendar events and scheduled tasks.
get-activity-item-listRetrieves enabled activity items.
get-activity-log-listRetrieves activity logs.
get-japan-current-timeReturns the current time in Japan.
create-taskCreates a TODO task.
update-taskUpdates a TODO task, including category assignment or removal.
update-calendar-date-memoUpdates or clears a calendar date memo.
start-activity-logStarts an activity log.
complete-activity-logCompletes an activity log.

How to install the Togello MCP server

{
  "mcpServers": {
    "togello": {
      "command": "npx",
      "args": ["-y", "togello-mcp-server"],
      "env": {
        "TOGELLO_API_TOKEN": "replace_with_your_token"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 22 or later - A Togello API token
VariableDescriptionRequired
TOGELLO_API_TOKENCredential the server authenticates with.Yes
TOGELLO_MCP_HOSTEndpoint or connection string the server talks to.Optional
TOGELLO_API_BASE_URLEndpoint or connection string the server talks to.Yes
TOGELLO_MCP_OPENAI_APPS_CHALLENGE_TOKENCredential the server authenticates with.Yes
OPENAI_APPS_CHALLENGE_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Togello to get-tasks-list.
  • Use Togello to get-calendar-date-memo.
  • Use Togello to get-todo-category-list.

Frequently asked questions

It connects Togello to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (get-tasks-list, get-calendar-date-memo, get-todo-category-list, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Togello directly.