Manage schedules using the Dooray API. Requires API key, member ID, and calendar ID to be configured.
Dooray API를 활용한 일정 관리 MCP 서버입니다.
To install Dooray Schedule Manager for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @mskim8717/dooray-mcp --client claude
git clone https://github.com/mskim8717/dooray-mcp.git
cd dooray-mcp
python -m venv .venv
source .venv/bin/activate # Linux/Mac
# 또는
.\.venv\Scripts\activate # Windows
pip install -e .
Claude, Cursor와 같은 MCP 클라이언트 애플리케이션에서 로컬 MCP 서버를 연동하려면, 서버 실행에 필요한 Python 실행 파일 경로와 MCP 서버 스크립트 경로를 JSON 설정에 입력해야 합니다.
내 경로에 알맞게 mcp.json을 수정해둡니다.
✅ macOS / Linux 예시
{
"mcpServers": {
"dooray-mcp": {
"command": "/Users/yourname/project/.venv/bin/python",
"args": [
"/Users/yourname/project/src/dooray-mcp-server.py"
]
}
}
}
.env
파일을 생성하고 다음 변수들을 설정하세요:
DOORAY_API_KEY=your_api_key
DOORAY_MEMBER_ID=your_member_id
DOORAY_CALENDAR_ID=your_calendar_id
서버 실행:
python src/dooray-mcp-server.py
dooray-mcp/
├── src/
│ └── dooray-mcp-server.py
├── pyproject.toml
├── README.md
└── LICENSE
MIT License
Converts Markdown text into HTML compatible with WeChat official accounts using an external API key.
Interact with Notion using its API. This server mirrors the Notion API SDK, allowing LLMs to manage pages, databases, and other Notion content.
Access and manage Apple Notes on macOS via AppleScript.
Interact with the HireBase Job API to manage job listings and applications.
A simple note storage system that allows adding and summarizing notes using a custom URI scheme.
A containerized MCP server for Microsoft 365, featuring OAuth authentication and OpenTelemetry instrumentation for monitoring.
Capture and analyze screenshots using the Claude Vision API.
Interact with and manage your Bitrix24 CRM instance through a powerful set of tools.
Parses invoice data, uploads it to Google Sheets, and answers queries by fetching information from the sheet.
An MCP server for interacting with Obsidian notes. Requires the OBSIDIAN_VAULT_PATH environment variable to be set.