LINE Issue MCP
LINE Issue MCP
Sistema que recibe las incidencias de los clientes desde LINE Official Account/Group, realiza un triaje con IA de los mensajes, revisa los commits recientes y las rutas asociadas (route/path) en GitLab antes de crear automáticamente una tarea de ClickUp en la lista Client Issues.
Flujo
LINE OA / Group
│ webhook + signature
▼
HTTP /webhooks/line
│
▼
OpenAI Responses API
classify + priority + summarize + search terms
│
▼
GitLab recent commits + commit diffs
rank related commits + paths + routes
│
▼
ClickUp / Client Issues
task + tag + priority + GitLab evidenceClasificación: Bug, Feature Request, Q&A
Prioridad: Low, Medium, High, Critical
Related MCP server: Kepler MCP GitLab Server
Cómo empezar
Se requiere Node.js 20 o superior.
Clave y variables de entorno
npm install
copy .env.example .env
npm run devConfigura el archivo .env como mínimo:
LINE_CHANNEL_SECRET: obtenido de LINE Developers > Messaging API channelOPENAI_API_KEY: clave de API para Responses APIGITLAB_TOKEN: token con permiso de lectura del repositorioGITLAB_PROJECT:namespace/projectCLICKUP_API_TOKEN: token personal o token OAuthCLICKUP_LIST_ID: ID de la listaClient Issues(método recomendado)
Si no se define CLICKUP_LIST_ID, define CLICKUP_TEAM_ID; el sistema buscará la lista cuyo nombre coincida con CLICKUP_LIST_NAME=Client Issues en todos los espacios/carpetas del Workspace.
Configura la URL del webhook de LINE como una URL HTTPS pública:
https://your-domain.example/webhooks/lineLa comprobación de estado está en GET /health.
Herramientas MCP
Ejecuta el servidor MCP a través de stdio:
npm run mcpHay 2 herramientas (tools):
analyze_client_issue: analiza y busca el contexto en GitLab, pero no crea la tarea.create_client_issue: completa todo el flujo y crea la tarea de ClickUp.
Ejemplo de configuración del cliente MCP:
{
"mcpServers": {
"line-issue": {
"command": "npm",
"args": ["run", "mcp"],
"cwd": "C:/absolute/path/to/line-issue-mcp"
}
}
}Comportamientos clave
Verifica
x-line-signatureen el cuerpo de la solicitud (raw request body) antes de aceptar el evento.Responde al webhook de LINE inmediatamente y procesa en segundo plano.
Usa
webhookEventIdpara evitar eventos duplicados en el mismo proceso.Un fallo de GitLab no bloquea la creación de la tarea de ClickUp; la tarea mostrará una advertencia en su lugar.
Las Q&A crearán una tarea por defecto; se puede desactivar con
CREATE_QA_TASKS=false.La solicitud a OpenAI usa Structured Outputs y
store: false.
Antes de la producción
Este MVP guarda la deduplicación de eventos en memoria, por lo que es adecuado para una sola instancia. Para producción, se recomienda añadir una cola persistente y un almacén de idempotencia (p. ej., Redis/Postgres), colas de reintento y de mensajes fallidos (dead-letter queue), un gestor de secretos, observabilidad y una lista de permitidos del repositorio/espacio de trabajo de ClickUp.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceA Model Context Protocol server that enables AI assistants to interact with Linear project management systems, allowing users to retrieve, create, and update issues, projects, and teams through natural language.1003,360146MIT
- AlicenseNot gradedqualityDmaintenanceProduction-ready MCP server providing GitLab integration with OAuth authentication, enabling AI assistants to manage projects, issues, merge requests, branches, files, and commits across GitLab instances.MIT

LINE Bot MCP Serverofficial
AlicenseAqualityAmaintenanceMCP server that integrates the LINE Messaging API to enable AI agents to send messages and manage LINE Official Accounts.121,252770Apache 2.0- AlicenseBqualityDmaintenanceMCP server for ClickUp task management, enabling task search, creation, update, deletion, workspace info retrieval, and comment management via ClickUp API v2.1582MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
The Teamwork.com official MCP server helps teams efficiently manage client projects with AI.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/rratchapol/line-issue-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server