Skip to main content
Glama

nworks_board_create

Create and publish posts to LINE WORKS boards. Use this tool to write announcements or share content in team workspaces after selecting a board ID.

Instructions

게시판에 글을 작성합니다. '게시판에 글 올려줘', '공지 작성해줘' 등의 요청에 사용. boardId는 nworks_board_list로 조회 가능. User OAuth 인증 필요 (board scope)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardIdYes게시판 ID (nworks_board_list로 조회 가능)
titleYes글 제목
bodyNo글 본문
enableCommentNo댓글 허용 (기본: true)
sendNotificationsNo알림 발송 (기본: false)

Implementation Reference

  • The nworks_board_create tool is registered and implemented in src/mcp/tools.ts. It calls the boardApi.createPost function to create a new post in a specified board.
    server.tool(
      "nworks_board_create",
      "게시판에 글을 작성합니다. '게시판에 글 올려줘', '공지 작성해줘' 등의 요청에 사용. boardId는 nworks_board_list로 조회 가능. User OAuth 인증 필요 (board scope)",
      {
        boardId: z.string().describe("게시판 ID (nworks_board_list로 조회 가능)"),
        title: z.string().describe("글 제목"),
        body: z.string().optional().describe("글 본문"),
        enableComment: z.boolean().optional().describe("댓글 허용 (기본: true)"),
        sendNotifications: z.boolean().optional().describe("알림 발송 (기본: false)"),
      },
      async ({ boardId, title, body, enableComment, sendNotifications }) => {
        try {
          const post = await boardApi.createPost({
            boardId,
            title,
            body,
            enableComment,
            sendNotifications,
          });
          return {
            content: [{ type: "text" as const, text: JSON.stringify({ success: true, postId: post.postId, boardId: post.boardId, title: post.title }) }],
          };
        } catch (err) {
          return {
            content: [{ type: "text" as const, text: mcpErrorHint(err, "board.create") }],
            isError: true,
          };
        }
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yjcho9317/nworks'

If you have feedback or need assistance with the MCP directory API, please join our Discord server