Full-featured MCP server and CLI for LINE WORKS (NAVER WORKS) — 26 tools covering messages, calendar, drive, mail, tasks, and boards. Automate with AI agents or scripts.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"nworks": {
"args": [
"mcp"
],
"command": "nworks"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Featured in awesome-mcp-servers
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'nworks' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked nworks against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / communication
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Nworks and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Featured in awesome-mcp-servers
Full-featured MCP server for LINE WORKS (NAVER WORKS). CLI + MCP server — 26 tools covering messages, calendar, drive, mail, tasks, and boards.
npm install -g nworks
nworks login --user
nworks calendar list
User: Show me today's schedule
Claude → nworks_calendar_list
→ 3 events: Standup (10:00), Lunch meeting (12:00), Code review (15:00)
User: Send a deploy complete message to the team channel
Claude → nworks_message_send
{ "channel": "C001", "text": "v1.2.0 deploy complete" }
→ Message sent
User: Check my unread emails and summarize them
Claude → nworks_mail_list (unread)
→ 3 unread emails
Claude → nworks_mail_read (each)
→ "3 unread: 1) Deploy approval from CTO, 2) Meeting invite for Friday, 3) Weekly report reminder"
npx nworks # Run directly
npm install -g nworks # Global install
# User OAuth (calendar, drive, mail, tasks, boards)
nworks login --user --scope "calendar calendar.read file file.read mail mail.read task task.read board board.read user.read"
# Bot messaging (Service Account)
nworks login
# Check auth status
nworks whoami
# Logout
nworks logout
nworks login --useronly requires CLIENT_ID + CLIENT_SECRET. Values already set via environment variables or existing config won't be asked again.
Developer Console: To use User OAuth, register
http://localhost:9876/callbackas a Redirect URL in the Developer Console.
Works with Claude Desktop, Cursor, and other MCP-compatible clients.
Login first:
nworks login --user --scope "calendar calendar.read file file.read mail mail.read task task.read board board.read user.read"
Then add to your MCP config (~/.config/claude/claude_desktop_config.json):
{
"mcpServers": {
"nworks": {
"command": "nworks",
"args": ["mcp"]
}
}
}
One login enables all 26 tools. No extra env setup needed.
Without CLI login, an AI agent can call
nworks_setup→nworks_login_userto authenticate via browser directly. Client Secret and Private Key path must be pre-configured via MCP configenvfield or system environment variables.
| Tool | Description | Auth |
|---|---|---|
| Setup / Auth | ||
nworks_setup | Configure API credentials (Client ID, etc.). Client Secret is set via env | — |
nworks_login_user | User OAuth browser login (all scopes included) | — |
nworks_logout | Delete credentials and tokens | — |
nworks_whoami | Check auth status | — |
nworks_doctor | Diagnose connection (auth, tokens, API health) | — |
| Messages | ||
nworks_message_send | Send message to user/channel | Service Account |
nworks_message_members | List channel members | Service Account |
nworks_directory_members | List organization members | Service Account |
| Calendar | ||
nworks_calendar_list | List calendar events | User OAuth (calendar.read) |
nworks_calendar_create | Create calendar event | User OAuth (calendar + calendar.read) |
nworks_calendar_update | Update calendar event | User OAuth (calendar + calendar.read) |
nworks_calendar_delete | Delete calendar event | User OAuth ( |