MCP Catalogs
Home

line-bot-mcp-server vs everything

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

line-bot-mcp-server
by line
everything
by modelcontextprotocol
Stars★ 583★ 85,748
30d uses
Score5177
Official
Categories
CommunicationProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.