AI · AIC-11

LINE Workflow Automation with Claude Code & MCP

12 hours 2 days
Last updated

LINE Workflow Automation with Claude Code & MCP is a 12-hour training course by IT Genius Institute. Almost every Thai organization uses LINE as its main communication channel - personal LINE, team group chats and the LINE Official Account - yet that…

Training schedule

No public rounds are open right now — register your interest and we will contact you when the next round opens, or request an in-house session for your team.

Corporate training quote

LINE Workflow Automation with Claude Code & MCP Almost every Thai organization uses LINE as its main communication channel - personal LINE, team group chats and the LINE Official Account - yet that communication is still almost entirely manual: internal announcements, summarizing meetings from group chats, tracking tasks assigned in LINE, or producing a report for management every morning. In 2026 this changes, because LINE released the LINE Bot MCP Server, an official MCP that connects an AI agent directly to a LINE Official Account. You can now give instructions in plain language such as "summarize today's group chat and post it back to the group" or "send yesterday's sales report to the management group every morning at 8", and an AI agent like Claude Code carries it out end to end. This

2-day onsite course is designed as two connected steps. Day 1 is a complete Claude Code foundation for beginners: installation, giving instructions, permission control, context management, using CLAUDE.md, connecting MCP and having AI write automation scripts. Day 2 applies all of those skills to build a real LINE Auto Workflow system, from an HR notification bot to a group-chat capture-and-summary system and an executive report that runs automatically every morning. Learners do not just follow along - they understand the tools deeply enough to apply them to other work in their organization, and every prompt is tool-neutral, working with both Claude Code and GPT Codex. (Hands-on classroom training, 2 days, 6 hours per day, 12 hours in total.)

Objectives

  • Enable trainees who have never used Claude Code to install, configure and use it confidently across all core capabilities, from basic commands to automation
  • Understand the permission system and operating modes of Claude Code (Plan Mode, file-edit approval, interrupting mid-task) and control the AI agent safely
  • Manage project context and memory with CLAUDE.md, along with prompt-writing techniques that produce accurate results
  • Understand Model Context Protocol (MCP) and connect MCP servers to Claude Code independently, both PostgreSQL and the LINE Bot MCP Server
  • Set up a LINE Official Account and Messaging API, and instruct AI to send messages, notifications and broadcasts, and to create Flex Messages and Rich Menus for internal communication
  • Understand the limits of the LINE Messaging API (it cannot read past chat history) and design a Webhook plus database architecture to capture group conversations for AI analysis
  • Build a system that summarizes group chats, tracks tasks assigned in LINE, and posts the summary back to the group automatically
  • Build a daily business report system from a database, send it as a Flex Message to the management group, and schedule it to run automatically with Task Scheduler
  • Write prompts that work across multiple AI agents, both Claude Code and GPT Codex, while being mindful of privacy, consent and governance

Who this course is for

  • People who have never used Claude Code or a CLI-based AI agent and want to start the right way until they can use it for real organizational work
  • Developers, programmers and IT staff who want to build LINE automation systems for their own organization
  • Power users, data analysts, HR or operations staff who use AI chat regularly and want to move up to having AI actually work with their organization's systems
  • Team leads and technology managers who want to see what an AI agent plus LINE can do for the organization in order to plan its adoption

Prerequisites

  • Comfortable using a computer and installing software, and familiar with basic commands in Command Prompt or Terminal
  • Some experience with AI chat such as Claude or ChatGPT (no prior experience with Claude Code or Codex CLI required - Day 1 covers the fundamentals in full)
  • A personal LINE account and normal use of LINE on a mobile phone
  • Basic programming and SQL knowledge helps you go further but is not required, because every step provides ready-made prompts for the AI to do the work

Curriculum

Course Details

A 2-day onsite hands-on workshop, 6 hours per day (12 hours in total). Every workshop across both days is woven around one scenario: a simulated company, "Siam Smart Trade", a Thai trading company that communicates mainly through LINE. On Day 1 learners practice Claude Code with this company's sales data, and on Day 2 they take on the role of the engineer building automation for the HR, operations and management teams. It closes with a Group Challenge where each team picks a real problem from their own organization for the AI agent to solve and then presents it. All data is simulated (a database seed file is provided) and unrelated to any real company.

Day 1: A Complete Claude Code Foundation for Beginners - From Install to Automation

Section 1: Getting to Know AI Agents and the Course Goals

  • From AI chat to AI agent: the difference that changes how you work, and why Thai organizations should start their auto workflow with LINE
  • Getting to know Claude Code and GPT Codex: what a CLI-based AI agent is and what it can do
  • An overview of the system you will finish building on Day 2, so you can see the destination of every skill learned today
  • Opening activity: survey the real workflows the organization currently runs on LINE and record them as a problem bank for the Day 2 Group Challenge

Section 2: Getting Started with Claude Code - Install, Instruct and Control

  • Install Claude Code on Windows, log in to your account and check the machine is ready
  • How it works: sessions, the project folder and the instruct-review-approve cycle
  • Your first commands: creating, reading and editing files and running commands through AI
  • Permissions and safety: approving file edits and command runs, Plan Mode (plan before acting), pressing ESC to stop mid-task, and redirecting the work
  • The key idea of the day: the AI does the work, you direct and accept it

Section 3: Key Commands, Context Management and CLAUDE.md

  • Frequently used commands: /help, /clear, /compact, /model, /mcp, /init and resuming work (continue and resume)
  • What context is, why a long session makes the AI lose track, and how to manage it with /clear and /compact
  • CLAUDE.md, the project memory: set rules such as answer in Thai, no semicolons, use the specified library
  • Techniques for good instruction prompts: state the goal, scope, technical requirements and a verifiable result, with side-by-side good and bad prompt examples from real work

Section 4: Workshop 1 - Your First Project with Claude Code

  • Build your first project from scratch: have AI create a web page summarizing Siam Smart Trade with a Chart.js graph
  • Practice the full cycle: writing prompts, using Plan Mode to review the plan before approving, and reviewing and re-directing the work until satisfied
  • Create a CLAUDE.md to set project rules, then verify the rules really affect the next task
  • This skill set is the heart of building the Webhook Server and reports on Day 2

Section 5: Model Context Protocol - The Gateway from AI to Your Systems

  • What MCP is: the standard for connecting AI to external systems, its architecture and the ecosystem of MCP servers you can use right away
  • Adding MCP with the claude mcp add command, checking status with /mcp, and configuration scope (project only or whole machine)
  • Introducing the two MCPs used throughout the course: the Postgres MCP (read side) and the LINE Bot MCP Server, with a deep dive into all 12 of its LINE tools

Section 6: Workshop 2 - Connect MCP to a Database and Have AI Analyze in Thai

  • Import Siam Smart Trade's simulated sales database (seed file provided, 30 days of history)
  • Connect the Postgres MCP to Claude Code yourself, then practice analysis step by step: explore the table structure, summarize yesterday's sales by branch and channel, and analyze the 30-day trend
  • Finish with a task to find the abnormal sales record hidden in the data (anomaly detection)
  • This database is used again in the Day 2 Capstone

Section 7: Workshop 3 - From Manual to Automatic: Your First Report Script and Task Scheduler

  • Key idea: ad-hoc work uses MCP on demand, while recurring work uses a script plus a schedule, and Claude Code writes both kinds of script for you
  • Have AI write a Node.js script that summarizes yesterday's sales into a report file, testing the dry-run concept before going live
  • Schedule it to run automatically with Windows Task Scheduler and test an immediate run
  • This same skeleton becomes the LINE report in the Day 2 Capstone

Section 8: GPT Codex Cross-check and Day 1 Wrap-up

  • Get to know the Codex CLI: install it, configure MCP (the config.toml file), then run the same prompts as Workshop 2 and compare the results and approach with Claude Code
  • Principles for writing tool-neutral prompts that work with any AI agent
  • Summarize all of Day 1's skills against the table showing where each will be used tomorrow
  • Prepare for Day 2: register a LINE Developers account, form teams of 3-4, create a test LINE group and verify the ngrok installation

Day 2: Apply Every Skill to Build a Full LINE Auto Workflow System

Section 9: The LINE Platform for Organizational Work

  • An overview of the LINE Official Account and Messaging API: what it can and cannot do, and each plan's message quota
  • The key limitation: the Messaging API cannot read past chat history, which sets up the afternoon's Webhook plus database architecture
  • The overall architecture of today's system: Webhook (inbound), PostgreSQL (memory), Postgres MCP (read) and LINE Bot MCP (send back)

Section 10: Workshop 4 - Set Up the LINE OA and an HR Notification Bot

  • Create a Provider and Messaging API Channel in the LINE Developers Console, configure the OA Manager (enable Webhook, disable auto-response, allow the bot into groups) and issue a Channel Access Token safely
  • Connect the line-bot MCP to Claude Code (the claude mcp add skill from Day 1) and send your first message into your own LINE with a single Thai prompt
  • Play the HR role: send individual meeting invitations, pull the follower list with get_follower_ids, broadcast a holiday announcement to every employee and check the quota with get_message_quota
  • Flex Message: design an internal job posting with buttons, test it in the Flex Message Simulator, and build an employee-services Rich Menu with create_rich_menu

Section 11: Workshop 5 - Group Chat Recorder: Capture Group Chats into a Database

  • Invite the bot into each team's test LINE group, then have Claude Code build a Webhook Server (Node.js, Express, @line/bot-sdk) that receives group messages and saves them to PostgreSQL
  • Use the Day 1 skills in full: write a prompt with clear requirements, use Plan Mode to review the plan, and review the AI-generated code before approving
  • Cover signature verification, deduplicating data when LINE retries, and always responding 200; expose the system to HTTPS with ngrok and set the Webhook URL
  • Have group members chat for real on a simulated topic (planning the operations team's work) and verify the messages flow completely into the database

Section 12: Workshop 6 - AI Summarizes the Group Meeting and Tracks Tasks, Posted Back to the Group

  • Use the Day 1 MCP database-analysis skills on the team's real chat data: summarize what the group discussed, who raised which points, and analyze group behavior
  • Find the appointments and tasks people committed to and turn them into a task-tracking table
  • Highlight: have AI summarize the meeting with the outstanding task list and post it back to the group as a daily Flex Message report everyone sees at once

Section 13: Workshop 7 (Capstone) - Executive Daily Report Delivered Automatically Every Morning

  • Extend the report script from Day 1 Workshop 3 into a complete system: have Claude Code build a daily-report script that queries yesterday's sales from the database imported on Day 1
  • Assemble it into an executive Flex Message report with a red alert section when an anomaly is found
  • Test with a dry run, check the JSON, then send it live to the group, and schedule it to run automatically every morning at 08:00 with Task Scheduler
  • By the end of the workshop every team has an automated report that runs on its own with no one issuing a command

Section 14: Group Challenge - Solve a Real Organizational Problem and Present

  • Each team picks one real problem from the problem bank collected since the start of the course, such as a notification system they wish they had, a report done by hand every day, or a data question management asks often
  • Have the AI agent build a prototype within the time limit
  • Present it to the room for 3 minutes per team and receive guidance on real-world adoption from the instructor

Section 15: Governance, Privacy and Course Wrap-up

  • Governance and privacy: obtaining consent before capturing group chats, using a read-only user with a real database, sensitive data that must not leave the organization, and token care
  • Ways to go further after the course: alert scripts for anomalies only, weekly HTML reports, building your organization's own MCP server and moving the system to the cloud
  • Closing Q&A, and distribution of all prompt documents with a checklist for real-world organizational adoption

Frequently asked questions

Who is LINE Workflow Automation with Claude Code & MCP for, and what background is needed?

Built for People who have never used Claude Code or a CLI-based AI agent and want to start the right way until they can use it for real organizational work · Developers, programmers and IT staff who want to build LINE automation systems for their own organization · Power users, data analysts, HR or operations staff who use AI chat regularly and want to move up to having AI actually work with their organization's systems Background you should have: Comfortable using a computer and installing software, and familiar with basic commands in Command Prompt or Terminal · Some experience with AI chat such as Claude or ChatGPT (no prior experience with Claude Code or Codex CLI required - Day 1 covers the fundamentals in full) Not sure the fit is right? Talk to our team on LINE @itgenius or call 02-570-8449.

How much does LINE Workflow Automation with Claude Code & MCP cost and how long does it run?

THB 5,500 (currently THB 4,950 on promotion). The course runs 12 hours. The fee covers course materials, lunch and refreshments throughout. Pay by bank transfer to the company account, confirm it on our payment page, and we can issue the receipt or tax invoice in your company's name.

Do I get a certificate?

Yes. Everyone who completes the course receives a Certificate of Completion from IT Genius Institute. Each certificate carries its own number, and anyone holding that number can verify it online on our certificate page, so you can add it to your portfolio or pass it to HR as evidence of training.

Where does the training take place, and is there an online option?

You can attend onsite at IT Genius Institute or arrange to join online, and we also run it as a private in-house session for your team. Ask about dates and venues on LINE @itgenius or call 02-570-8449.

What if I fall behind or miss a session — can I retake it?

Yes. You may retake the same course free of charge in a later round, under the institute's conditions. Tell our team which course and round you attended, and we will check it and offer you the rounds that still have seats. Ask us on LINE @itgenius or call 02-570-8449.

How do I enrol, or request a quotation for my company?

Enrol online with the registration form on this page. You can register several attendees at once and enter your tax ID and billing address for the tax invoice. Or request a company quotation straight from the quote button. For anything else call 02-570-8449 or reach us on LINE @itgenius.

Instructors

Run this course for your whole team

We run this course in-house, tailored to your stack.

Corporate training quote