Сервер MCP

Позвольте вашему ИИ-помощнику управлять вашим хостингом

Один MCP-сервер для всей вашей учетной записи. Подключите Claude Code, Claude Desktop или Cursor один раз, и ваш помощник сможет просматривать список ваших сайтов, читать их логи, синхронизировать файлы с вашим репозиторием и выполнять развертывание, действуя только с предоставленными вами разрешениями.

65 инструментов сегодня, приведенных ниже в точности так, как их предлагает сервер.

Подключить

Два шага. Токен представляет собой всю учетную запись целиком, поэтому обращайтесь с ним как с паролем: он отображается один раз, и вы можете отозвать одно соединение, не затрагивая остальные.

  1. Создать подключение

    В панели управления откройте ИИ-инструменты, укажите название подключения, выберите клиента и отметьте галочками разрешенные действия. Вы можете предоставить только те права, которыми обладаете сами.

  2. Вставьте конфигурацию, которую читает ваш клиент

    На панели управления отображается конфигурация для выбранного вами клиента, куда уже добавлен ваш токен. Все клиенты обращаются по одному и тому же адресу сервера:

    https://api.zinndigital.com/v1/mcp

Claude Code

Выполните одну команду или добавьте этот блок в файл .mcp.json в корне вашего проекта. Строка "type": "http" является обязательной — без нее Claude Code пропускает сервер.

claude mcp add --transport http zinn https://api.zinndigital.com/v1/mcp \
  --header "Authorization: Bearer zmcp_live_…"
// .mcp.json
{
  "mcpServers": {
    "zinn": {
      "type": "http",
      "url": "https://api.zinndigital.com/v1/mcp",
      "headers": {
        "Authorization": "Bearer zmcp_live_…"
      }
    }
  }
}

Claude Desktop

Claude Desktop запускает локальные серверы, поэтому он использует наш бесплатный CLI Zinnector® в качестве моста к хостинговому серверу. Требуется Node 24 или новее. Токен указывается в переменных среды (env), но никогда в аргументах.

// claude_desktop_config.json
{
  "mcpServers": {
    "zinn": {
      "command": "npx",
      "args": [
        "-y",
        "zinnector@0.1.4",
        "mcp"
      ],
      "env": {
        "ZINN_MCP_TOKEN": "zmcp_live_…"
      }
    }
  }
}

Курсор

Добавьте сервер в файл ~/.cursor/mcp.json (или .cursor/mcp.json в проекте), указав адрес и заголовок Authorization.

// ~/.cursor/mcp.json
{
  "mcpServers": {
    "zinn": {
      "url": "https://api.zinndigital.com/v1/mcp",
      "headers": {
        "Authorization": "Bearer zmcp_live_…"
      }
    }
  }
}

Любой другой клиент MCP

Любой клиент, поддерживающий удаленные серверы Streamable HTTP с пользовательским заголовком, подойдет: укажите его на адрес выше и отправьте Authorization: Bearer со своим токеном. Клиент, который запускает только локальные серверы, может использовать мост Claude Desktop.

ChatGPT подключается к MCP-серверам только через вход с помощью OAuth, поэтому он пока не может использовать токен. Используйте то же подключение с помощью Claude Code, Claude Desktop или Cursor.

Проверьте работоспособность — четыре вопроса

Задайте их простым языком. Под каждым указан инструмент, который должен вызвать ваш помощник, и то, как выглядит хороший ответ.

  1. > List my sites.
      ↳ sites_list

    Ваши сайты с их статусом и тарифом. Пустой список в аккаунте, на котором есть сайты, означает, что у подключения отсутствует разрешение на просмотр сайтов.

  2. > Show me the error log for example.com.
      ↳ site_logs

    Недавний журнал ошибок и журнал доступа. Если какой-либо из них не удается прочитать, в ответе указывается это, что отличается от пустого журнала.

  3. > Sync example.com to its repository.
      ↳ site_repo_sync_run

    Коммит в вашем репозитории со всеми изменениями с «живого» сайта или уведомление о том, что репозиторий уже соответствовал актуальному состоянию. Если репозиторий был перемещен, синхронизация приостанавливается и ничего не перезаписывается.

  4. > I pushed a commit — deploy example.com and tell me when it is live.
      ↳ site_deploy → site_deploy_status

    Развертывание ставится в очередь, а затем запускается с примененным коммитом. Инструменты для записи запрашивают ваше разрешение в клиенте перед запуском.

Двусторонняя синхронизация в обоих направлениях

Сайт с подключенным репозиторием синхронизируется с ним в обе стороны, и ваш помощник может работать в любом направлении.

Сайт → репозиторий

Фиксирует изменения в рабочих файлах (правку в файловом менеджере, обновление плагина, загрузку) и отправляет их в вашу ветку, чтобы следующий git pull их подтянул.

site_repo_sync_run   ·   zinnector sync run

Репозиторий → сайт

Развертывание применяет вашу ветку к сайту. Отправьте коммит, затем выполните развертывание; на наших серверах для этого требуется включить двустороннюю синхронизацию, которая предоставляется бесплатно.

site_deploy   ·   zinnector push

При изменении с обеих сторон

Ничто и никогда не объединяется и не перезаписывается автоматически. Синхронизация останавливается, указывает имя коммита и ожидает вашего решения: оставить сайт или сохранить репозиторий. Сохранение репозитория приводит к отмене несохраненных изменений сайта, поэтому требуется подтверждение.

site_repo_sync_resolve keep=site|repository confirm=true

Что обеспечивает его безопасность

Только то, на что вы дали разрешение

Для каждого инструмента требуется разрешение, и соединение сохраняет только те, которые вы отметили. Для вашего соединения сайты других клиентов не существуют.

Подтверждение для любых необратимых действий

Откат, восстановление, устранение зависшей синхронизации и покупка требуют явного подтверждения, а все, что стоит денег, сначала показывает вам точную итоговую сумму.

Каждое действие в вашем журнале аудита

Каждый вызов записывается для соединения, которое его совершило. Отозвите соединение на странице инструментов ИИ, и оно мгновенно перестанет работать.

Каждый инструмент

Все инструменты в количестве 65, созданные на основе собственного реестра сервера: если они здесь указаны, ваш ассистент может их вызывать.

Сайты и развертывания

ИнструментНазначениеПрава доступаЗаметки
sites_listList the organization's sites, with each site's primary domain, status, product line, stack and the plan it is on. Optionally filter by status, product line or a search over domain and name.sites.viewтолько для чтения
site_getGet one site's full record — domain, status, product line, stack, runtime, PHP version, region, plan and whether it is scheduled for deletion.sites.viewтолько для чтения
site_createCreate a site and start provisioning it. Give a primary domain and a product line; optionally a blueprint to build it from, a stack type, a PHP version or a region. Returns the new site, which begins in 'provisioning' — poll site_get for status.sites.createизменение параметров
site_deployDeploy a site — build and publish its current source to our servers. Returns the deploy state immediately; the build runs as a durable workflow. Poll site_deploy_status to follow it.hosting.deploy.manageизменение параметров
site_deploy_statusThe site's current deploy state — status, target, the live URL, the deployed commit and when it last went live.sites.viewтолько для чтения
site_deployments_listList a site's recent deployments — id, status, commit, branch and timings. Use this to choose the deployment_id to roll back to.sites.viewтолько для чтения
site_rollbackRoll a site back to an earlier deployment by re-deploying its commit. Destructive: pass confirm=true. Use site_deployments_list to choose which one.hosting.deploy.manageизменение параметров · запрашивает подтверждение

Двусторонняя синхронизация

ИнструментНазначениеПрава доступаЗаметки
site_repo_sync_getShow a site's two-way sync with its repository: whether it is available and on, the repository and branch, the current state (idle, synced, conflict, adopt, error) and the last runs with the commits they made.sites.viewтолько для чтения
site_repo_sync_setTurn two-way sync on or off for a site, optionally limited to a subdirectory of the site. Needs the customer's own GitHub account connected. Turning it on pushes nothing by itself — call site_repo_sync_run for that.hosting.deploy.manageизменение параметров
site_repo_sync_runSync a site to its repository now: commit whatever changed in the site's live files and push it to the connected branch, so a local git pull receives it. If the repository moved since the last sync the run is HELD and nothing is overwritten — the result says so. The other direction (repository to site) is site_deploy.hosting.deploy.manageизменение параметров
site_repo_sync_resolveResolve a HELD two-way sync. keep=site commits the site's files on top of the repository (their commits stay in history); keep=repository applies the repository to the site and DISCARDS the site's unsynced changes. Destructive: pass confirm=true.hosting.deploy.manageизменение параметров · запрашивает подтверждение

Журналы и метрики

ИнструментНазначениеПрава доступаЗаметки
site_metricsCurrent metrics for one site — visits, bandwidth, error rate, disk and resource use. Each section reports whether it is available, so 'no data' is distinguishable from 'zero'.sites.viewтолько для чтения
site_usageOne site's metered visit usage for the current billing period, with the plan's allowance and what any overage costs.sites.viewтолько для чтения
site_logsRead the recent tail of one site's web-server access log and error log. Each log reports whether it could be read, so an unreadable log is never mistaken for an empty one. Use this before proposing a fix for errors or slowness.sites.panel_accessтолько для чтения
site_build_logRead the build log of one deployment — the latest when deployment_id is omitted. Pass after=<total from the previous call> to fetch only new lines while complete is false.sites.viewтолько для чтения

Конфигурация и WordPress

ИнструментНазначениеПрава доступаЗаметки
site_php_version_getThe site's current PHP version and every version it is allowed to switch to on its product line.sites.viewтолько для чтения
site_php_version_setSwitch a site to a different PHP version. The version must be one that site_php_version_get lists as available. Reports whether the change reached the machine or was only recorded for provisioning to apply.hosting.php.manageизменение параметров
wordpress_stateA WordPress site's core version, whether an update is available, and which management operations its hosting permits.sites.viewтолько для чтения
wordpress_plugins_listList a WordPress site's plugins — name, version, whether active and whether an update is available.sites.viewтолько для чтения
wp_plugin_updateUpdate one WordPress plugin to its latest version. Returns the plugin list as it reads after the update.sites.panel_accessизменение параметров
wordpress_update_coreUpdate WordPress core to the latest version on a site. This cannot be undone by another call — take a backup first with backup_create if you may need to go back. Requires confirmation.sites.panel_accessизменение параметров · запрашивает подтверждение
wordpress_set_pluginActivate or deactivate one plugin on a WordPress site. Takes effect on the live site immediately. Requires confirmation.sites.panel_accessизменение параметров · запрашивает подтверждение

Резервные копии

ИнструментНазначениеПрава доступаЗаметки
backups_listA site's backups — each one's id, when it was taken, its size and status — plus whether a backup is currently running and how many on-demand backups remain in the rolling 24-hour allowance.sites.viewтолько для чтения
backup_createTake an on-demand backup of a site and return the updated backup state. Bounded to 3 per rolling 24 hours per site; the backup runs in the background.hosting.backup.manageизменение параметров
backup_restoreRestore a site from one of its backups. This OVERWRITES the site's live database and files, and everything changed since that backup was taken is lost. Requires confirmation, and the confirmation names how old the backup is.hosting.backup.manageизменение параметров · запрашивает подтверждение

Домены и DNS

ИнструментНазначениеПрава доступаЗаметки
dns_records_listList a page of DNS records for a domain whose DNS we host, in name/type/value order. Returns a next_cursor for the following page.sites.viewтолько для чтения
dns_record_createCreate a DNS record for a domain whose DNS we host.domains.dns.manageизменение параметров
dns_record_updateUpdate an existing DNS record for a domain whose DNS we host.domains.dns.manageизменение параметров
dns_record_deleteDelete a DNS record for a domain whose DNS we host.domains.dns.manageизменение параметров · запрашивает подтверждение
domains_listList the organization's domains — id, hostname, status, product line and whether we registered it or the customer pointed it at us. The ids returned here are what the DNS, cache-purge and index-check tools take.sites.viewтолько для чтения

Кэш и краулеры

ИнструментНазначениеПрава доступаЗаметки
cache_purgePurge the CDN cache for a domain. Omit 'urls' to purge everything, or pass a bounded list of absolute URLs to purge only those.sites.cache.purgeтолько для чтения
crawler_policy_getGet a site's SEO-crawler-blocking (PBN footprint) policy: which crawlers are blocked, the available crawlers, and the rendered robots.txt/server rules.sites.viewтолько для чтения
crawler_policy_setSet a site's SEO-crawler-blocking policy. 'blocked' is a list of crawler keys (from crawler_policy_get's available_crawlers). Search engines can never be blocked. Publishes the change so the server rules are re-written.sites.crawler.manageизменение параметров

Электронная почта

ИнструментНазначениеПрава доступаЗаметки
mail_services_listList the organization's email services — every domain it has mailboxes on, with the plan's mailbox allowance, how many are used, and whether the mail DNS is published.mail.viewтолько для чтения
mailboxes_listList the mailboxes on one email service, with each mailbox's size, how full it is, and whether it can send and receive.mail.viewтолько для чтения
mailbox_createCreate a mailbox on an email service. Returns the new mailbox's password, which is shown once and cannot be retrieved later.mail.manageизменение параметров
mail_forwarders_listList the mail forwarders on one email service — which address goes where.mail.viewтолько для чтения
mail_forwarder_createCreate a mail forwarder on an email service, sending everything for one address on to one or more destinations.mail.manageизменение параметров

SEO

ИнструментНазначениеПрава доступаЗаметки
site_seo_metricsThe cached SEO authority metrics for a hosted site — domain rank, backlinks, referring domains and organic keywords. Read-only and free; the figures are refreshed by the platform's own sweep, so they may be up to a month old.sites.viewтолько для чтения
domain_index_checkThe cached search-index status for a domain — whether it is indexed, how many pages, and when the reading was taken. Read-only and free.sites.viewтолько для чтения

ИИ-изображения

ИнструментНазначениеПрава доступаЗаметки
image_models_listThe image models this account can generate with — provider, model, and the price per image in USD. Read-only and free. A model that is not listed cannot be used, either because it is retired or because nobody has priced it.sites.viewтолько для чтения
image_generateGenerate an image from a prompt and put it in this account's image library. Costs money — the price per image is what image_models_list reports for the model used. Returns the image ids; the customer sees them in their library immediately.links.editизменение параметров · можно потратить средства

Доски

ИнструментНазначениеПрава доступаЗаметки
board_listList this organisation's project boards, newest first.agency.board.viewтолько для чтения
board_getRead one board in full: its columns and every card on them.agency.board.viewтолько для чтения
board_createCreate a project board, optionally for one of your client organisations.agency.board.manageизменение параметров
board_card_createAdd a card to a column. Cards are agency-only unless you pass visibility 'client'.agency.board.manageизменение параметров
board_card_moveMove a card to another column, or to another position in its column.agency.board.manageизменение параметров
board_card_commentComment on a card. Agency-only unless you pass visibility 'client', in which case the client sees it attributed to your agency.agency.board.commentизменение параметров

Биллинг и обновление тарифов

ИнструментНазначениеПрава доступаЗаметки
subscriptions_listList the organization's subscriptions — the plan each one is on, its status, renewal date and whether it auto-renews.billing.viewтолько для чтения
invoices_listList the organization's invoices and credit notes — number, status, total, currency and issue date. Optionally filter by status.billing.viewтолько для чтения
upgrade_optionsWhat can be bought to lift a limit you have hit — bigger plans, priced with tax, in your own currency. Pass the entitlement from a refusal (e.g. 'max_sites'), or a site_id to see what that site's own plan could move to. Read-only: nothing is bought, and calling this costs nothing.billing.viewтолько для чтения
purchase_quotePrice a plan exactly, with tax, in the customer's own currency — and nothing is bought or charged. Returns a quote_id to pass to purchase_authorize together with the total, which is what stops an agent committing someone to a figure they never saw. Quotes expire: re-quote rather than reusing an old id.billing.payment.manageизменение параметров
purchase_authorizeComplete a purchase from a quote: places the order and charges the payment method on file. You must pass the exact total and currency purchase_quote returned — if the price has moved since, this refuses rather than charging a different amount. Retrying with the same quote_id returns the same order and never charges twice.billing.payment.manageизменение параметров · запрашивает подтверждение · можно потратить средства

Поддержка

ИнструментНазначениеПрава доступаЗаметки
tickets_listList the organization's support tickets — subject, status, priority and when they were last updated. Optionally filter by status or site.tickets.viewтолько для чтения
ticket_createOpen a support ticket. Include what you already checked — an agent that has read the KB and run diagnostics should say so in the body, so a human does not repeat it.tickets.replyизменение параметров

Реселлер

ИнструментНазначениеПрава доступаЗаметки
reseller_overviewThe reseller programme in one read: status, whether you can sell, billing day, default markup, your panel hostname and nameservers, mail sending domain, support routing, commerce readiness and the languages your clients' panel offers.reseller.viewтолько для чтения · только для реселлеров
reseller_services_listList the sites you have provisioned for your clients — one row per service, with the client organisation, status, any hold you placed, what it costs you wholesale and what you sell it for. Your own sites are not here; use sites_list for those.reseller.viewтолько для чтения · только для реселлеров
reseller_service_getOne client service in full — status, plan, any hold, wholesale cost, your sell price, and its disk and bandwidth usage.reseller.viewтолько для чтения · только для реселлеров
reseller_service_suspendPut one of your client's services on a non-payment hold. The site stops serving until you release it. Requires confirm: true.reseller.provisionизменение параметров · запрашивает подтверждение · только для реселлеров
reseller_service_unsuspendRelease a non-payment hold you placed on a client's service. The site starts serving again.reseller.provisionизменение параметров · только для реселлеров
reseller_prices_listYour price list: every plan you can sell, with the Zinn® list price, your wholesale cost, and the retail price you have set (if any).reseller.viewтолько для чтения · только для реселлеров
reseller_client_wallets_listEvery client wallet you hold a float in, with the balance per client and the total held per currency. This is money you have taken and not yet delivered service for.reseller.viewтолько для чтения · только для реселлеров

Продолжить чтение

Предпочитаете терминал?

Справочник по CLI Zinnector®

Создано на базе публичного API

Справочник по API

На что способен ИИ-ассистент

Инструменты ИИ и MCP

Подключите вашего ассистента за две минуты

Откройте инструменты искусственного интеллекта на панели управления, создайте подключение и вставьте конфигурацию, которую считывает ваш клиент.