MCP Catalogs
Home

line-bot-mcp-server vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

line-bot-mcp-server
by line
filesystem
by modelcontextprotocol
Stars★ 583★ 85,748
30d uses
Score5177
Official
Categories
CommunicationProductivityAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

line-bot-mcp-server · Summary

LINE Bot MCP Server connects AI agents to LINE Official Accounts via 12 tools for messaging, profile retrieval, and rich menu management.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

line-bot-mcp-server · Use cases

  • Automated customer support chatbot for LINE Official Account
  • Broadcasting promotional messages to all LINE followers
  • Creating interactive rich menus for enhanced user experience

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

line-bot-mcp-server · Install

Installation

Prerequisites

  • Node.js v20 or later
  • LINE Official Account with Messaging API enabled

Step 1: Get LINE Credentials

  1. Create a LINE Official Account at https://developers.line.biz/en/docs/messaging-api/getting-started/#create-oa
  2. Enable Messaging API for your account
  3. Get your Channel Access Token: https://developers.line.biz/en/docs/basics/channel-access-token/#long-lived-channel-access-token
  4. Get your Destination User ID: https://developers.line.biz/en/docs/messaging-api/getting-user-ids/#get-own-user-id

Step 2: Install with npx

Add to your Claude Desktop config:

{
  "mcpServers": {
    "line-bot": {
      "command": "npx",
      "args": [
        "@line/line-bot-mcp-server"
      ],
      "env": {
        "CHANNEL_ACCESS_TOKEN": "YOUR_TOKEN",
        "DESTINATION_USER_ID": "YOUR_USER_ID"
      }
    }
  }
}

Step 3: Install with Docker

docker run -i --rm -e CHANNEL_ACCESS_TOKEN="YOUR_TOKEN" -e DESTINATION_USER_ID="YOUR_USER_ID" line/line-bot-mcp-server

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.