Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for iTop ITSM that provides 19 tools for analytics, ticket management, comments, knowledge base, and CI impact analysis, enabling AI assistants to interact with iTop.

README.md

mcp-itop

MCP-сервер для iTop ITSM — аналитика, заявки, комментарии, база знаний, CI.

Предоставляет AI-ассистентам (opencode, Claude Desktop, Cursor) 19 инструментов для работы с iTop: SLA-аналитика, нагрузка агентов, качество услуг, жизненный цикл заявок, поиск по БЗ, impact-анализ CI.

Возможности

Аналитика

| Инструмент | Описание | |------------|----------| | itop_sla_report | SLA-отчёт по услуге за период (TTO/TTR passed/breached/N/A, медиана решения) | | itop_agent_workload | Загрузка агентов: закрытые/открытые заявки, time_spent, backlog | | itop_idle_agents | Поиск заявок, где агент бездействует >N часов без действий | | itop_service_quality | Поиск похожих заявок, назначенных на разные услуги | | itop_caller_quality | Качество выбора услуг пользователями | | itop_agent_correction_rate | Агенты, которые исправляют / не исправляют услуги | | itop_ticket_summary | Дашборд: создано/решено/открыто/SLA breaches |

Комментарии

| Инструмент | Описание | |------------|----------| | itop_add_comment | Добавить публичный или приватный комментарий к заявке | | itop_get_log | Прочитать историю комментариев (public_log, private_log) |

База знаний

| Инструмент | Описание | |------------|----------| | itop_search_kb | Поиск статей БЗ (поддерживает KBEntry и FAQ) | | itop_get_kb_article | Полный текст статьи | | itop_list_kb_categories | Список рубрик БЗ |

CRUD + Жизненный цикл

| Инструмент | Описание | |------------|----------| | itop_get | Поиск объектов (OQL / ID / JSON-критерии) | | itop_create | Создание объекта | | itop_update | Обновление полей объекта | | itop_delete | Удаление с simulate-режимом | | itop_apply_stimulus | Жизненный цикл: ev_assign, ev_resolve, ev_close, ev_reopen | | itop_get_related | Impact-анализ CI (impacts/depends on) | | itop_describe_class | Разведка полей класса по существующему объекту |

Быстрый старт

1. Установка

pip install mcp[fastmcp] httpx python-dotenv

2. Настройка (глобальный конфиг)

mkdir -p ~/.config/mcp-itop
cat > ~/.config/mcp-itop/.env << 'CONFIG'
ITOP_URL=https://your-itop.example.com
# Токен или логин+пароль:
ITOP_TOKEN=ваш_токен_здесь
# ITOP_USER=admin
# ITOP_PASSWORD=secret
ITOP_VERSION=1.3
ITOP_VERIFY_SSL=true
ITOP_TIMEOUT=30
CONFIG

3. Запуск

python server.py

Интеграция

opencode (глобальный конфиг)

Добавить в ~/.config/opencode/opencode.json:

"itop": {
  "type": "local",
  "command": ["python", "/путь/до/mcp-itop/server.py"],
  "enabled": true
}

opencode (на проект)

Добавить в opencode.json проекта:

{
  "mcpServers": {
    "itop": {
      "command": "python",
      "args": ["/путь/до/mcp-itop/server.py"],
      "env": {
        "ITOP_URL": "https://your-itop.example.com",
        "ITOP_TOKEN": "ваш_токен"
      }
    }
  }
}

Claude Desktop

Добавить в claude_desktop_config.json:

{
  "mcpServers": {
    "itop": {
      "command": "python",
      "args": ["/путь/до/mcp-itop/server.py"]
    }
  }
}

Примеры запросов

Покажи SLA по услуге "Техподдержка" за этот месяц
Кто из агентов перегружен?
Какие заявки висят без движения больше 2 часов?
Найди похожие заявки с разными услугами
Кто из пользователей часто выбирает не ту услугу?
Добавь комментарий к заявке RQ-123
Создай новую заявку: Не работает принтер
Назначь RQ-456 на Иванова
Найди CI, связанные с сервером srv-web-01
Поищи в БЗ по VPN

Совместимость

Протестировано на:

  • iTop 3.2.1-1-16749 (PHP 8.1.2, MariaDB 10.6)
  • Поддерживает русскую локаль (да/нет для SLA) и английскую (true/false)
  • Автоопределение модуля БЗ: KBEntry → FAQ

Требования

  • Python ≥ 3.10
  • mcp[fastmcp]
  • httpx
  • python-dotenv

Тесты

python -m pytest tests/ -v

Архитектура

AI-клиент → MCP (stdio) → server.py → iTop REST API

Приоритет конфигурации:

  1. ~/.config/mcp-itop/.env (глобальный, наивысший приоритет)
  2. .env (локальный в папке проекта)
  3. Переменные окружения

Лицензия

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.