Sáltate la instalación. Funcionando en menos de 2 minutos.
Inicia una prueba gratuita en cloud.anythingmcp.com, añade GLPI con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.
Summary
GLPI open-source ITSM and asset management: tickets, computers, monitors, software, users and entities, plus GLPI's search engine. REST API on your own instance, session-token auth with an App-Token.
Prueba a pedir
Prompts de ejemplo para GLPI
Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.
Claude es IA y puede equivocarse. Verifica siempre las respuestas.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → GLPI, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
GLPI + ChatGPT
GLPI open-source ITSM and asset management: tickets, computers, monitors, software, users and entities, plus GLPI's search engine. REST API on your own instance, session-token auth with an App-Token.
Requisitos previos
Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:
GLPI_URL, GLPI_APP_TOKEN, GLPI_USER_TOKEN
Paso 1 — Obtener credenciales
GLPI needs two tokens, and both are easy to confuse.
- App-Token — identifies the application. In GLPI go to Setup → General → API, enable 'Enable Rest API' and 'Enable login with external token', add an API client, and copy its application token. Put it in
GLPI_APP_TOKEN. - User-Token — identifies the person. Open the GLPI user the agent should act as, go to the API tab of their profile, and regenerate the remote access key (personal API token). Put it in
GLPI_USER_TOKEN. - Set
GLPI_URLto the instance root (no trailing slash); the adapter appends/apirest.php.
…(continued in the in-app connector instructions)
Paso 2 — Instalar el adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Paso 3 — Añadir el conector en ChatGPT
ChatGPT soporta servidores MCP a través de la función Connectors (planes Plus / Pro / Team / Enterprise). El plan gratuito no admite conectores personalizados.
- Abre ChatGPT → Settings → Connectors (o pulsa el icono 🔧 en el composer → Manage connectors).
- Pulsa "Add custom connector".
- Rellena:
- Name:
GLPI - MCP server URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → pega tu MCP API key (de AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Pulsa Connect para autorizar.
Herramientas disponibles
| Tool | What it does |
|---|---|
glpi_get_active_entities | Read the entities the logged-in user is currently scoped to |
glpi_list_tickets | List tickets in the active entity with their status, priority, category, requester and dates |
glpi_get_ticket | Read one ticket in full, with its description, status, urgency, impact, priority, requester, assignee and SLA dates |
glpi_get_ticket_followups | Read the follow-ups (the conversation) on one ticket, in order, with author, date and whether each is private |
glpi_search | Run a GLPI search with criteria |
glpi_list_search_options | Read the searchable field map for one item type: which field number means status, requester, serial number and so on |
glpi_list_computers | List computers from the asset inventory with their name, serial number, model, operating system and assigned user |
glpi_get_computer | Read one computer in full: hardware, OS, network interfaces, contracts, location and the user it is assigned to |
glpi_list_users | List GLPI users with their login, name, e-mail, entity and active flag, to resolve who a ticket or an asset belongs to |
glpi_list_software | List software items from the inventory with their publisher, category and the number of installations, for licence questions |
FAQ
¿Funciona el plan gratuito de ChatGPT con los Connectors MCP personalizados? No — se necesita Plus, Pro, Team o Enterprise.
Siguientes pasos
¿Te ha sido útil esta guía?