インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、GLPI をワンクリックで追加して、AI クライアント(Claude、ChatGPT、Copilot、Cursor)を生成された MCP エンドポイントに向けるだけ。Docker も git clone も、開発経験も不要です。
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.
こう聞いてみよう
GLPI のサンプルプロンプト
プロンプトをクリックでコピー。Claude / ChatGPT / Cursor / Gemini / Copilot / OpenClaw に貼り付けて、このコネクターで実行できます。
Claude は AI のため誤ることがあります。回答をご確認ください。
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → GLPI をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
GLPI + Cursor
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.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
GLPI_URL, GLPI_APP_TOKEN, GLPI_USER_TOKEN
ステップ 1 — 認証情報を取得
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)
ステップ 2 — アダプターをインストール
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
ステップ 3 — Cursor にコネクタを追加
Cursor は ~/.cursor/mcp.json から MCP サーバを読み込みます。次のエントリを追加してください:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- AnythingMCP の Profile → MCP API Keys → New Key で MCP API key を取得。
- ファイルを保存し Cursor を再起動。
- Cursor → Settings → MCP を開き、
GLPIが "Connected" として表示されることを確認。 - チャット開始 —
GLPIのすべてのツールが呼び出し可能になります。
利用可能なツール
| 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
Cursor の Free プランでカスタム MCP サーバは使えますか? はい — Hobby/Pro/Business で利用可能です。
次のステップ
このガイドは役に立ちましたか?