Skip to main content
Glama

htmlkin

Server Details

Publish HTML pages, PDF documents, and multi-file static websites directly from Claude, ChatGPT, Cursor, Codex, and other AI agents via MCP. Update or delete publications and retrieve metadata without leaving the conversation.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool maps to a distinct lifecycle operation: publish, get, update, and delete. There is no overlap or ambiguity between the four actions.

Naming Consistency5/5

All tools follow the same `htmlkin_<verb>` pattern with clear, simple verbs. The naming is perfectly consistent and predictable.

Tool Count5/5

Four tools form a tight, well-scoped set for a publishing service: create, read, update, and delete. No tool feels redundant or missing in terms of raw count.

Completeness4/5

The core CRUD lifecycle for published sites is fully covered. A minor gap is the lack of a list/discovery tool, so an agent cannot enumerate previously published sites without having retained identifiers.

Available Tools

4 tools
htmlkin_deleteУдалить сайтAInspect

Безвозвратно удаляет ранее опубликованный сайт по его идентификатору — после этого он перестаёт открываться по своему адресу. Если к сайту был привязан свой домен, домен остаётся в аккаунте: снимается только его связь с этим сайтом.

ParametersJSON Schema
NameRequiredDescriptionDefault
page_idYesИдентификатор сайта (поле id из ответа htmlkin_publish).

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden, and it discloses key behaviors: the deletion is irreversible, the site stops opening at its address, and a custom domain remains in the account while its association is removed. It does not cover error cases or permissions, but the most important side effects are transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tightly written sentences: the first communicates the core destructive action and result, the second handles the important domain edge case. No filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with no output schema, the description covers the essential context: permanence, effect on the site's URL, and the domain exception. It is sufficiently complete for correct invocation, though it could mention what the agent should expect in response.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the schema already explains that page_id is the site identifier from htmlkin_publish. The description only restates 'по идентификатору', adding little beyond the structured parameter definition.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action ('Безвозвратно удаляет ранее опубликованный сайт') with the resource and effect. It also distinguishes itself from siblings like htmlkin_publish and htmlkin_update by emphasizing deletion and irreversibility.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The use case is clear: use this when a previously published site must be permanently removed. It does not explicitly mention alternatives or when not to use it, but the deletion purpose is distinct enough from the sibling tools that no ambiguity remains.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

htmlkin_getПолучить информацию о сайтеAInspect

Возвращает метаданные ранее опубликованного сайта: адрес, размер, число файлов, entrypoint, срок жизни и наличие PIN-защиты.

ParametersJSON Schema
NameRequiredDescriptionDefault
page_idYesИдентификатор сайта.

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses what is returned (metadata fields) and implies a read-only operation. However, it omits error behavior (e.g., what happens if the site is not found) and does not explicitly state that no changes are made, which would be useful given the absence of readOnlyHint.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that leads with the action and immediately lists the returned data. Every word earns its place with no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter read tool without an output schema, the description adequately lists the return fields and resource state. It lacks details on error handling and does not explicitly confirm the operation is non-mutating, but these are minor gaps for a metadata getter. Overall it is sufficiently complete for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds meaningful context beyond the schema's generic 'Идентификатор сайта' (site identifier) by specifying the site must be previously published and enumerating the metadata tied to that identifier. This helps the agent understand the required state of the resource.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Возвращает метаданные' (returns metadata) with a clear resource: previously published site. It enumerates the exact metadata fields, making the tool's function unmistakable. It clearly distinguishes from sibling tools (delete, publish, update) as the read-only metadata retrieval operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clarifies the tool operates on 'ранее опубликованного сайта' (previously published site), implying it should be used after publishing and not for unpublished resources. However, it does not explicitly mention alternatives or state when not to use this tool, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

htmlkin_publishОпубликовать сайтAInspect

Публикует сайт на htmlkin.ru и возвращает его публичный адрес (URL). Принимает ровно один источник: готовый HTML (html_content), PDF в base64 (pdf_base64) или текстовые файлы статического сайта (files). Для binary-ассетов используй ZIP через REST API или браузер. Можно задать желаемый субдомен и PIN-защиту.

ParametersJSON Schema
NameRequiredDescriptionDefault
pinNo4-значный PIN (0000–9999) для защиты просмотра сайта. Опционально.
filesNoДо 20 текстовых файлов и 2 МБ UTF-8 суммарно; обязателен корневой index.html.
subdomainNoЖелаемый субдомен ({subdomain}.htmlkin.ru): 3–63 символа a-z, 0-9, «-» (не по краям). Не URL и не имя файла. Если занят — ошибка subdomain_taken.
pdf_base64NoPDF-документ в base64 (можно с префиксом data:application/pdf;base64,). Ровно одно из полей html_content и pdf_base64.
html_contentNoПолный HTML-документ сайта (inline HTML, до 30 МБ; больше — ZIP через REST API). Ровно одно из полей html_content и pdf_base64.

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral burden. It discloses the outcome (returns public URL), the exclusivity constraint, and the binary-asset fallback. It does not mention idempotency, whether an existing subdomain is treated as an error (only in schema), or authentication expectations, leaving some behavior implicit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four short sentences, front-loaded with purpose and return value; each sentence adds a constraint or routing hint without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 5 optional parameters and no output schema, the description covers purpose, source selection, optional subdomain/PIN, and return value. It leaves error semantics (subdomain_taken) to the schema, which is acceptable, but a brief note on response shape beyond 'URL' would be more complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema already documents all five parameters (coverage 100%), so the baseline is 3. The description adds the mutual-exclusion rule across html_content/pdf_base64/files and clarifies that files are for text-only static sites, which is decision-relevant beyond the schema fields.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Публикует сайт на htmlkin.ru' and states the return value (public URL). Listing the three accepted source formats (html_content, pdf_base64, files) further defines the operation and distinguishes it from sibling delete/get/update tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says 'Принимает ровно один источник' (exactly one source), guiding parameter selection, and routes binary assets to ZIP via REST API or browser, an explicit alternative. It does not, however, contrast with htmlkin_update/delete, so sibling differentiation is incomplete.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

htmlkin_updateПолностью обновить сайтAInspect

Обновляет ранее опубликованный сайт по его идентификатору: заменяет контент (html_content, pdf_base64 или files — не более одного) и/или меняет PIN. Обновление всегда полностью заменяет сайт: html_content превращает многофайловый сайт в single-file. Адрес сайта не меняется, тип контента менять можно (HTML → PDF и наоборот). Можно передать только pin, чтобы изменить лишь защиту.

ParametersJSON Schema
NameRequiredDescriptionDefault
pinNo4 цифры — установить/сменить PIN; пустая строка — снять PIN.
filesNoНовый полный набор текстовых файлов сайта; до 20 файлов / 2 МБ.
page_idYesИдентификатор сайта (поле id из ответа htmlkin_publish).
pdf_base64NoНовый PDF-документ в base64. Опционально; не вместе с html_content.
html_contentNoНовый HTML-документ. Опционально; не вместе с pdf_base64.

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and does so well. It discloses that the update always fully replaces the site, that html_content converts a multi-file site into a single-file site, that the address does not change, and that content type can be switched between HTML and PDF.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and every sentence adds information: the update scope, the replacement behavior, the address stability, the content-type switching, and the PIN-only case. It is front-loaded with the core purpose and avoids redundant boilerplate.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description together with the schema fully covers what an agent needs to call it correctly: valid page identification, content constraints, replacement semantics, and the PIN-only variant. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Even though the schema already documents all 5 parameters, the description adds crucial cross-parameter semantics: at most one of html_content, pdf_base64, or files may be provided, passing only pin changes protection, and html_content has a transformative effect on multi-file sites. This goes well beyond the individual field descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource: updates an already published site by its identifier. It clearly distinguishes itself from siblings by emphasizing 'previously published' and by explaining that the address stays the same, making it distinct from publish, delete, and get.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly states the use case: updating an existing published site and optionally changing only the PIN. It implies the boundary against publish by saying 'previously published site,' but it does not explicitly name alternatives or say when not to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updates
    • First observedhtmlkin_delete
    • First observedhtmlkin_get
    • First observedhtmlkin_publish
    • First observedhtmlkin_update

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources