Routine

공식

Routine과 상호작용하는 MCP 서버: 캘린더, 작업, 노트 등

Routine MCP(으)로 무엇을 할 수 있나요?

  • 오늘의 일정 확인 — 어시스턴트에게 Routine 캘린더에서 다가오는 이벤트와 작업을 가져오도록 요청하세요.
  • 새 작업 생성 — 자연어 요청으로 Routine에 직접 할 일을 기록하세요.
  • Routine 노트 또는 문서 열기 — 어시스턴트가 Routine 앱 내에서 특정 페이지나 노트를 열도록 하세요.

문서

Routine MCP(Model Context Protocol) 서버

이것은 Routine Model Context Protocol (MCP) 서버입니다.

사용법

  1. MCP 서버가 작동하려면 Routine 애플리케이션을 실행하세요.
  2. npx routine-mcp-server 으로 이 MCP 서버를 실행하거나 선호하는 MCP 클라이언트에서 구성하세요.

Claude Desktop

Claude Desktop의 경우 https://modelcontextprotocol.io/quickstart/user 을 참조하세요.

특히, claude_desktop_config.json 파일은 다음과 비슷해야 합니다:

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

개발

# Install dependencies
yarn

# Build the project
yarn build

그런 다음 MCP 서버를 설치하세요:

  • 명령: node 실행 파일의 전체 경로
  • 인수: ./dist/index.js 의 전체 경로

Claude Desktop

Claude Desktop의 경우 https://modelcontextprotocol.io/quickstart/user 을 참조하세요.

특히, claude_desktop_config.json 파일은 다음과 비슷해야 합니다:

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

MCP 서버 실행 (개발)

# Start the server
yarn start

서버는 MCP 프로토콜에 따라 stdin/stdout을 통해 통신합니다. stdin으로 JSON 요청을 보내고 stdout에서 응답을 읽어 상호작용할 수 있습니다.