Routine MCP Server

MCP server for the Routine application that provides interaction with calendars, tasks, notes, and other productivity features through the Model Context Protocol.

Get this MCP server

MCP server for the Routine application that provides interaction with calendars, tasks, notes, and other productivity features through the Model Context Protocol.

Installation

NPX

npx routine-mcp-server

From Source

yarn
yarn build

Configuration

Claude Desktop (Production)

{
  "mcpServers": {
    "routine": {
      "command": "npx",
      "args": ["routine-mcp-server"]
    }
  }
}

Claude Desktop (Development)

{
  "mcpServers": {
    "routine": {
      "command": "/absolute/path/to/bin/node",
      "args": ["/absolute/path/to/mcp-server/dist/index.js"]
    }
  }
}

Notes

The MCP server requires a running Routine application to function. The server communicates through stdin/stdout, following the MCP protocol.

Comments (0)

Sign In Sign in to leave a comment.