toolkit-mcp-server
Публичный хостинг сервера: https://toolkit.caseyjhand.com/mcp
Инструменты
Семь инструментов. Пять всегда включены и не требуют настройки — утилиты чистых вычислений плюс поиск IP без SSRF. Два опрашивают хост-сервер и отсутствуют в tools/list, пока вы не включите их — закрыты по умолчанию.
Инструмент | Описание |
| Сгенерировать криптографический дайджест (sha256/sha512/sha1/md5) или выполнить сравнение значения с ожидаемым дайджестом с постоянным временем. |
| Создать криптостойкие случайные идентификаторы — UUIDv4, UUIDv7 или ULID — по одному или пакетами до 1000 штук. |
| Закодировать текст или URL в QR-код в виде SVG-разметки, PNG в base64 или строки, отображаемой в терминале. |
| Кодировать или декодировать значение в base64, base64url, hex или URL-процентное кодирование в любом направлении. |
| Разрешить публичный IP или доменное имя в географические и сетевые данные — страна, город, координаты, ASN, часовой пояс. |
| Ограничен, выключен по умолчанию. Сетевые диагностики только для чтения с хост-сервера — ping, traceroute, TCP-подключение или определение исходящего IP. |
| Ограничен, выключен по умолчанию. Сообщить аспект состояния системы хост-сервера — ОС, CPU, память, средняя нагрузка или сетевые интерфейсы. |
toolkit_hash_value
Сгенерировать дайджест или проверить значение на соответствие ожидаемому с постоянным временем.
operation:generate(дайджест в нижнем регистре hex) илиcompare(проверка с постоянным временем черезtimingSafeEqual)Алгоритмы:
sha256(по умолчанию) иsha512для безопасности;sha1иmd5представлены только для совместимости с контрольными суммами и целостностью файлов — никогда не используйте их для паролей или подписейinputEncodingчитаетvalueкакutf8(по умолчанию),hexилиbase64, поэтому двоичные данные пропускают этап декодированияКаноническое использование: сопоставление загруженного файла с контрольной суммой, опубликованной поставщиком
toolkit_generate_id
Создать криптостойкие случайные идентификаторы из CSPRNG платформы — правильный источник для идентификаторов, которые должны быть непредсказуемыми, в отличие от значений, придуманных моделью.
type:uuid_v4(случайный, по умолчанию),uuid_v7(упорядоченный по времени, сортируемый по созданию) илиulid(26-символьный Crockford base32, лексикографически сортируемый)countсоздаёт пакет до 1000 идентификаторов за один вызов; возвращаемый массивidsвсегда содержит ровноcountзначенийПакеты
uuid_v7иulidмонотонны — строго возрастают даже в пределах одной миллисекунды — поэтомуidsостаётся в порядке сортировки по созданиюТолько для чтения — создание ничего не меняет — но никогда не идемпотентно, поэтому клиент не будет кэшировать или дедуплицировать пакет
toolkit_generate_qr
Закодировать текст или URL в QR-код.
format:svg(встроенная разметка),png_base64(растровые данные сmimeTypeиbyteLength) илиterminal(строка из Unicode-блоков)errorCorrection(L/M/Q/H) обменивает ёмкость данных на устойчивость к повреждениям;marginзадаёт ширину тихой зоны;scaleзадаёт пиксели на модуль для растрового выводаВозвращаемый
version(1–40) отражает плотность закодированных данныхpng_base64также поступает как блок MCP-изображения, поэтому клиент, читающийcontent[], может отобразить код без декодированияstructuredContentОтрендеренный PNG ограничен 2048 пикселями по стороне —
(modules + 2 × margin) × scale— поэтому плотный символ с высокимscaleотклоняется с типизированной ошибкойraster_too_large, указывающей подходящий масштаб;svgиterminalне имеют ограниченийdataограничена 2953 байтами — абсолютный потолок (версия 40, уровень L, байтовый режим); полезная ёмкость ниже при более высоких уровняхerrorCorrection, поэтому входные данные, превышающие ёмкость, отклоняются с типизированной ошибкойdata_too_large, а не с общей ошибкой
toolkit_encode_value
Кодировать или декодировать значение в любом направлении.
encoding:base64,base64url(безопасный для URL алфавит),hexилиurl(процентное кодирование)operation:encode(сырой UTF-8 → кодировка) илиdecode(закодированное значение → текст)Некорректный вход декодирования возвращает типизированную ошибку
decode_failedс подсказкой по восстановлению, а не молчаливый результат «наилучшего усилия»
toolkit_geolocate_ip
Разрешить публичный IP или доменное имя в географические и сетевые данные.
Возвращает страну, регион, город, широту/долготу, ASN, владеющую организацию и часовой пояс
Флаги
proxy,hostingиmobileуказывают, является ли адрес прокси/VPN/выходом Tor, датацентровой сетью или мобильным оператором —trueна любом из них означает, что координаты описывают инфраструктуру, а не человека. Отсутствует, если провайдер не сообщает эти данныеДоменное имя сначала разрешается через DNS;
resolvedIpотражает фактически локализованный IP, аsourceуказывает отвечающего провайдераБез SSRF — сервер обращается к провайдеру, а не к цели; разрешённый IP повторно проверяется на частные диапазоны, а частные/зарезервированные адреса отклоняются (у них нет публичной геолокации)
Работает по принципу «наилучшего усилия» и ограничено провайдером: VPN, прокси, мобильный NAT и anycast не позволяют точно определить местоположение по IP, точность — максимум на уровне города, а отсутствующие поля сообщаются как неизвестные, а не выдумываются
Строки от провайдера обрезаются и очищаются от управляющих символов перед попаданием в ответ, поэтому текст из реестров (
org,isp,as) не может переполнить или испортить контекст моделиПо умолчанию без ключа (бесплатный уровень ip-api, который использует обычный HTTP — см.
TOOLKIT_GEO_BASE_URL); результаты кэшируются в памяти по разрешённому IP с фиксированным лимитом записей
toolkit_check_network
Ограничен — регистрируется только при TOOLKIT_ENABLE_NET_DIAGNOSTICS=true. Сетевые диагностики только для чтения с хост-сервера.
mode:ping(ICMP круговой путь),traceroute(путь до цели),connectivity(сырое TCP-подключение кtargetна портуport) илиpublic_ip(собственный исходящий IP хоста)Хост, который не отвечает, сообщается как
reachable: false— это корректный результат, а не ошибкаДиагностирует собственную сеть сервера, поэтому полезен в локальном или самостоятельно развёрнутом окружении; доступ к частной/зарезервированной/внутренней цели дополнительно требует
TOOLKIT_ALLOW_PRIVATE_NETWORK=true, что по умолчанию блокирует метаданные облачной конечной точки
toolkit_check_system
Ограничен — регистрируется только при TOOLKIT_ENABLE_SYSTEM_INFO=true. Сообщает аспект состояния системы хост-сервера, только для чтения.
what:os,cpu,memory,loadилиinterfacesЗа один вызов заполняется ровно один объект аспекта, соответствующий
whatОписывает хост, на котором запущен этот сервер, а не вызывающий клиент — имеет смысл в локальном или самостоятельно развёрнутом окружении; выключен по умолчанию, поскольку
osиinterfacesраскрывают топологию хоста и версии
Related MCP server: IT Tools MCP Server
Возможности
Построен на @cyanheads/mcp-ts-core:
Декларативные определения инструментов — один файл на инструмент, фреймворк обрабатывает регистрацию и валидацию
Единая обработка ошибок — обработчики выбрасывают исключения, фреймворк ловит, классифицирует и форматирует
Типизированные контракты ошибок — каждый подверженный ошибкам инструмент объявляет свои причины сбоев с подсказками по восстановлению, на которые агент может реагировать
Подключаемая аутентификация:
none,jwt,oauthСтруктурированное логирование с опциональной трассировкой OpenTelemetry
Транспорты STDIO и Streamable HTTP
Специфичные для набора инструментов:
Закрытое по умолчанию ограничение — два инструмента, опрашивающих хост, отсутствуют в
tools/list, если явно не включены, поэтому в хостинг-инстансе нет поверхности для SSRF или раскрытия информацииДвухуровневый сетевой шлюз — даже с включённой диагностикой частные/зарезервированные/loopback/link-local цели (включая метаданные облачной конечной точки) остаются заблокированными, пока не будет разрешён второй флаг
Примитивы на основе CSPRNG — идентификаторы и дайджесты берутся из криптоисточника платформы, а сравнение хешей выполняется с постоянным временем через
timingSafeEqualГеолокация без SSRF — сервер обращается к провайдеру, затем повторно проверяет разрешённый через DNS IP на частные диапазоны перед поиском, поэтому доменное имя не может перенаправить запрос на внутренний адрес
Вывод, удобный для агента:
Происхождение — геолокация возвращает разрешённый IP и имя отвечающего провайдера; отсутствующие поля от upstream сообщаются как неизвестные, никогда не выдумываются
Корректные результаты при недоступности — недостижимый хост возвращает
reachable: falseвместо ошибки, поэтому вызывающие разветвляются на основе данных, а не текста исключенияТипизированные причины сбоев — ошибки декодирования, отсутствующие дайджесты и заблокированные частные цели содержат структурированную причину и подсказку по восстановлению для следующего шага
Начало работы
Публичный хостинг-инстанс
Публичный инстанс доступен по адресу https://toolkit.caseyjhand.com/mcp — установка не требуется. Направьте любой MCP-клиент через Streamable HTTP:
{
"mcpServers": {
"toolkit-mcp-server": {
"type": "streamable-http",
"url": "https://toolkit.caseyjhand.com/mcp"
}
}
}Самостоятельное развёртывание / Локально
Добавьте следующее в файл конфигурации вашего MCP-клиента. Ключ API не требуется — пять постоянно включённых инструментов и бесплатный уровень геолокации без ключа работают «из коробки».
{
"mcpServers": {
"toolkit-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/toolkit-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Или с npx (Bun не требуется):
{
"mcpServers": {
"toolkit-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/toolkit-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Или с Docker:
{
"mcpServers": {
"toolkit-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/toolkit-mcp-server:latest"]
}
}
}Чтобы включить ограниченные инструменты опроса хоста, добавьте их флаги в env (или -e для Docker):
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"TOOLKIT_ENABLE_NET_DIAGNOSTICS": "true",
"TOOLKIT_ENABLE_SYSTEM_INFO": "true"
}Для Streamable HTTP установите транспорт и запустите сервер:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcpПредварительные требования
Bun v1.3.2 или выше (или Node.js v24+).
Ключ API не требуется — геолокация по умолчанию использует бесплатный уровень ip-api без ключа.
Установка
Клонируйте репозиторий:
git clone https://github.com/cyanheads/toolkit-mcp-server.gitПерейдите в каталог:
cd toolkit-mcp-serverУстановите зависимости:
bun installКонфигурация
Каждая переменная является опциональной. Специфичные для сервера параметры проверяются при запуске с помощью схемы Zod в src/config/server-config.ts.
Переменная | Описание | По умолчанию |
| Регистрирует закрытый инструмент |
|
| Регистрирует закрытый инструмент |
|
| При включенной диагностике сети разрешает частные/зарезервированные/петлевые цели. Второй явный шлюз. |
|
| API-ключ для конечной точки геолокации, если он требуется. | нет |
| Базовый URL для совместимой с ip-api конечной точки геолокации. Значение по умолчанию — HTTP без шифрования — конечная точка HTTPS от ip-api не входит в бесплатный уровень без ключа и отвечает |
|
| Время жизни кэша геолокации в памяти в секундах. |
|
| Максимальное количество запросов геолокации в минуту. |
|
| Транспорт: |
|
| Порт для HTTP-сервера. |
|
| Режим аутентификации: |
|
| Уровень журналирования (RFC 5424). |
|
| Включить инструментацию OpenTelemetry (спаны, метрики, журналы завершения). |
|
См. .env.example для полного списка опциональных переопределений.
Запуск сервера
Локальная разработка
Сборка и запуск:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpЗапуск проверок и тестов:
bun run devcheck # Lint, format, typecheck, security, changelog sync bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Docker
docker build -t toolkit-mcp-server .
docker run --rm -e MCP_TRANSPORT_TYPE=http -p 3010:3010 toolkit-mcp-serverDockerfile по умолчанию использует HTTP-транспорт, режим сеанса без сохранения состояния и записывает журналы в /var/log/toolkit-mcp-server. Зависимости OpenTelemetry устанавливаются по умолчанию — соберите с --build-arg OTEL_ENABLED=false, чтобы их исключить.
Структура проекта
Каталог | Назначение |
| Точка входа |
| Парсинг и проверка специфичных для сервера переменных окружения с помощью Zod. |
| Определения инструментов ( |
| Служба геолокации — разрешение DNS, вызов провайдера с повторными попытками/отступлением, нормализация, кэш в памяти. |
| Служба сетевой диагностики плюс общий валидатор целей и классификатор частных диапазонов. |
| Модульные и интеграционные тесты, повторяющие структуру |
Руководство по разработке
См. CLAUDE.md / AGENTS.md для руководств по разработке и архитектурных правил. Краткая версия:
Обработчики выбрасывают исключения, фреймворк их перехватывает — без
try/catchв логике инструментовИспользуйте
ctx.logдля журналирования в рамках запроса,ctx.stateдля хранилища в рамках арендатораРегистрируйте новые инструменты в массивах
createApp()вsrc/index.tsДва инструмента проверки хоста регистрируются за своими флагами включения; шлюз сетевой цели проверяется после разрешения DNS — никогда не создавайте результат для нелокализуемой или недоступной цели
Участие
Приветствуются заявки и запросы на слияние. Запускайте проверки и тесты перед отправкой:
bun run devcheck
bun run testЛицензия
Apache-2.0 — подробности см. в LICENSE.
Available Tools
5 toolstoolkit_encode_valuetoolkit-mcp-server: encode valueARead-onlyIdempotentInspect
Encode or decode a value across base64, base64url, hex, or URL (percent) encoding, in either direction. Set operation to "encode" to transform raw UTF-8 text into the chosen encoding, or "decode" to recover the original text from an encoded value. base64url uses the URL-safe alphabet (- and _ instead of + and /); url applies encodeURIComponent / decodeURIComponent. Decoding a value that is malformed for the chosen encoding is reported as a recoverable error, not a silent best-effort.
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | The value to transform — raw text for encode, an encoded string for decode. | |
| encoding | Yes | The encoding to apply: base64, URL-safe base64url, hex, or URL percent-encoding. | |
| operation | Yes | "encode" transforms text into the encoding; "decode" recovers text from an encoded value. |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | Present when the call failed. Absent on success. |
| result | No | The transformed value (encoded text, or the decoded original). |
| encoding | No | The encoding that was applied. |
| operation | No | The operation that was performed. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already supply readOnlyHint and idempotentHint, and the description adds strong behavioral context beyond that: base64url alphabet substitution, encodeURIComponent/decodeURIComponent semantics, and recoverable-error behavior for malformed decodes. This tells the agent exactly what to expect without contradicting annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three focused sentences: the first states scope, the second explains operation semantics, and the third adds essential encoding-specific and error behavior. No filler, repetition of schema fields, or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a stateless encode/decode utility with an output schema and fully documented parameters, this is complete: it covers all four encodings, both directions, and the failure mode. Nothing necessary for correct invocation is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All three parameters are fully described in the schema (100% coverage), so the baseline is 3. The description adds extra practical meaning for encoding ('base64url uses the URL-safe alphabet', 'url applies encodeURIComponent / decodeURIComponent') and clarifies that value is raw text for encode vs an encoded string for decode, warranting a 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb+resource: encode or decode a value across four named encodings, in either direction. This clearly distinguishes it from siblings like hashing, ID generation, QR generation, and IP geolocation without needing to inspect them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit operation-level guidance: set operation to "encode" or "decode" depending on the desired direction, with clear expectations for each. It does not name alternative tools or exclusion criteria, so sibling differentiation is implicit by domain rather than explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_generate_idtoolkit-mcp-server: generate idARead-onlyInspect
Mint cryptographically-random identifiers using the platform CSPRNG — the correct source for IDs that must be unpredictable, unlike model-generated values. type selects the format: uuid_v4 (random, the default), uuid_v7 (time-ordered, sortable by creation), or ulid (26-char Crockford-base32, lexicographically sortable). Set count to mint a batch in one call (up to 1000); the returned ids array always contains exactly count values and is never truncated. For uuid_v7 and ulid, a batch is monotonic — strictly increasing even within the same millisecond — so the ids array stays in sorted creation order. IDs from this tool feed into toolkit_generate_qr (pass ids[0] as data) to create a scannable code.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Identifier format: uuid_v4 (random), uuid_v7 (time-ordered), or ulid (sortable Crockford-base32). | uuid_v4 |
| count | No | How many identifiers to mint (1–1000). The full batch is always returned. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ids | No | The minted identifiers — exactly count of them, in mint order; for uuid_v7 and ulid that order is strictly increasing (sorted by creation). |
| type | No | The identifier format that was minted. |
| count | No | The number of identifiers minted (equals the requested count). |
| error | No | Present when the call failed. Absent on success. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only declare readOnlyHint=true and idempotentHint=false. The description enriches this by clarifying that the result is cryptographically random, that the ids array always contains exactly count values and is never truncated, and that batches for uuid_v7/ulid are monotonic and sorted. These behavioral details go beyond what annotations provide, though it does not mention failure modes or performance characteristics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense paragraph with zero filler. It front-loads the core purpose, then details types and count, then adds behavioral guarantees and a cross-reference to a related tool. Every sentence earns its place and the structure is logical.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given only 2 parameters, 100% schema coverage, and a provided output schema, the description is complete. It covers the purpose, usage, parameter semantics, behavioral guarantees, and even a downstream use case. There is nothing an agent needs to know to call it correctly that is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides 100% description coverage for both parameters. The description adds value by explaining the semantic difference between uuid_v4, uuid_v7, and ulid (including sortability), the default behavior, and the monotonic ordering within a batch — none of which are in the schema descriptions. It also clarifies the count semantics (exact return size).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific action ('Mint cryptographically-random identifiers') and a precise resource ('platform CSPRNG'), and immediately distinguishes it from the alternative of model-generated values. It also names the three output formats with their distinct properties, so an agent can clearly tell this tool apart from siblings like toolkit_hash_value or toolkit_generate_qr.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use this tool ('IDs that must be unpredictable') and when not ('unlike model-generated values'), and it names a concrete downstream use case (feed ids[0] into toolkit_generate_qr). This leaves no ambiguity about the appropriate context of use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_generate_qrtoolkit-mcp-server: generate QR codeARead-onlyIdempotentInspect
Encode text or a URL into a QR code. data is the content to encode (a link, a generated identifier such as toolkit_generate_id's ids[0], or any string). format selects the output: svg returns inline SVG markup, png_base64 returns base64-encoded PNG bytes (with mimeType and byteLength), and terminal returns a block of Unicode block characters renderable in a monospace terminal. errorCorrection (L/M/Q/H) trades data capacity for damage tolerance, margin sets the quiet-zone width, and scale sets pixels per module for raster output. The returned version (1–40) reflects how dense the encoded data is. png_base64 renders (modules + 2 × margin) × scale pixels per side and rejects anything past 2048 px with a typed raster_too_large error, so a dense symbol needs a lower scale; svg carries no such limit.
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | The text or URL to encode. 2953 is the absolute ceiling (QR version 40, level L, byte mode); usable capacity drops at higher errorCorrection levels, so over-capacity data is rejected with a typed data_too_large error rather than a generic failure. | |
| scale | No | Pixels per module for raster (png_base64) output. Ignored for terminal. png_base64 also bounds the whole image at 2048 px per side, so a dense symbol or a wide margin admits a lower scale than 32. | |
| format | No | Output format: svg markup, png_base64 (raster bytes), or a terminal-renderable string. | svg |
| margin | No | Quiet-zone width in modules around the symbol. The spec recommends 4. | |
| errorCorrection | No | Error-correction level: L (~7% recoverable) to H (~30%). Higher tolerance lowers data capacity. | M |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | Present when the call failed. Absent on success. |
| format | No | The format that was produced. |
| content | No | The QR artifact: SVG markup, a terminal-renderable string, or base64 PNG bytes for png_base64. |
| version | No | QR symbol version (1–40); higher versions hold denser data and indicate denser content. |
| mimeType | No | MIME type of content for image formats. Absent for the terminal format. |
| byteLength | No | Decoded byte size of the PNG. Present only for png_base64. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations, the description discloses important runtime behavior: exact output forms per format, the returned QR version, the png_base64 pixel formula, the 2048-pixel rejection limit, and the typed raster_too_large error. It also notes that svg has no such size limit, which is valuable behavioral context an agent cannot infer from annotations or schema alone.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core action and then proceeds logically through data, format, error correction, margin, scale, and constraints. Every sentence adds practical information, and the detail is proportionate to the tool's five-parameter complexity with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given five parameters, an output schema, and the presence of siblings, the description covers everything needed to invoke the tool correctly: parameter semantics, format-specific behavior, capacity limits, error types, and interaction effects. Nothing essential is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Even though schema description coverage is 100%, the description enriches the parameters substantially by explaining how they interact: errorCorrection trades capacity for damage tolerance, scale is bounded by image size, and dense data may force a lower scale. It also clarifies return-value details like mimeType and byteLength, adding meaning beyond the raw schema entries.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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: 'Encode text or a URL into a QR code.' It then enumerates the three output formats, making it unmistakable what the tool produces and clearly distinguishing it from siblings like toolkit_hash_value, toolkit_encode_value, and toolkit_generate_id.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly establishes when it is appropriate to use the tool by explaining its purpose and giving concrete examples of valid data, including a generated identifier from toolkit_generate_id. It does not explicitly list when-not-to-use cases or name alternative tools as a routing hint, so it stops 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.
toolkit_geolocate_iptoolkit-mcp-server: geolocate IPARead-onlyIdempotentInspect
Resolve a public IP address (or hostname) to geographic and network metadata: country, region, city, latitude/longitude, the owning ASN and organization, timezone, and the proxy/hosting/mobile quality flags. target accepts an IPv4/IPv6 address or a hostname — a hostname is DNS-resolved first and the resolvedIp field echoes which IP was actually located. The provider is called directly (never the target), so this is SSRF-free and safe to expose anywhere. Results are best-effort and provider-bounded: VPNs, proxies, mobile NAT, and anycast all defeat IP-to-location, accuracy is city-level at best, and many fields can be absent for reserved or thinly-documented ranges — absent fields are reported as unknown, never invented. Read proxy, hosting, and mobile before trusting the coordinates: a true on any of them means the location describes infrastructure, not the user. Private/reserved addresses have no public geolocation and are rejected. The source field names which provider answered.
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | A public IPv4/IPv6 address or a hostname (e.g. "8.8.8.8" or "example.com"). |
Output Schema
| Name | Required | Description |
|---|---|---|
| asn | No | Autonomous System number, e.g. "AS15169". Absent on providers that omit it. |
| org | No | Owning organization or ISP, e.g. "Google LLC". Absent when unknown. |
| city | No | City name. Absent when unknown. |
| error | No | Present when the call failed. Absent on success. |
| proxy | No | True when the address is a known proxy, VPN, or Tor exit — the location describes the exit node, not the user. Absent when the provider does not report it. |
| mobile | No | True when the address belongs to a mobile carrier network, where NAT can place the location far from the device. Absent when unreported. |
| region | No | Region or state name. Absent when unknown. |
| source | No | The provider that answered the lookup, e.g. "ip-api". |
| target | No | The target as supplied (IP or hostname). |
| country | No | Country name. Absent when the provider does not report it. |
| hosting | No | True when the address belongs to a hosting or datacenter network, so the location is a facility rather than a person. Absent when unreported. |
| latitude | No | Latitude in decimal degrees. Absent when unknown. |
| timezone | No | IANA timezone, e.g. "America/Los_Angeles". Absent when unknown. |
| longitude | No | Longitude in decimal degrees. Absent when unknown. |
| resolvedIp | No | The IP that was actually located (a supplied hostname is resolved to this first). |
| countryCode | No | ISO 3166-1 alpha-2 country code. Absent when unknown. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With readOnlyHint=true and destructiveHint=false already in annotations, the bar is lower, yet the description still adds real context: the provider is called directly (never the target), so it is safe on untrusted input; accuracy is provider-bounded; behavior on private/reserved ranges is stated; proxy/VPN/mobile flags are defined as reliability warnings; and the source field is disclosed. Nothing contradicts the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
All four sentences are substantive and the operation is stated up front in the first sentence, with caveats and security notes after. No filler. Minor redundancy between 'accuracy is best-effort' and 'VPNs, proxies, anycast...' slightly thins the density, but nothing is wasted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-param, read-only tool whose output is not schema-described, the description covers: the input types, DNS resolution behavior, the output fields, the meaning of proxy/mobile flags for reliability, and failure modes (private ranges rejected). An agent has everything needed to call it correctly and interpret the result.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (the single param is fully defined with three alternates: IPv4, IPv6, hostname). The description adds value beyond the schema by stating that hostnames are DNS-resolved first and that the resolved address is echoed in the response — behavior the schema cannot express. Slightly more caveat detail (e.g., punycode) would push to 5, but coverage is already high.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The first sentence states a clear verb-resource pair — resolve a public IP or hostname to a set of geographic and network metadata — and enumerates every returned field, so an agent immediately knows what it does and what it returns. It also carves out scope (public only) that distinguishes it in a toolkit whose other tools are QR, hash, and weather related.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when results are reliable and when they are not (VPNs, proxies, anycast, mobile NAT, reserved ranges), which is implicit guidance to the caller on trusting the output. It does not explicitly contrast with a sibling geolocation alternative, but the sibling set contains no competing tool, so a 4 is appropriate rather than a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_hash_valuetoolkit-mcp-server: hash valueARead-onlyIdempotentInspect
Generate a cryptographic digest of a value, or verify a value against an expected digest. Set operation to "generate" for a lowercase-hex digest, or "compare" to constant-time-check value against the expected digest — compare is timing-safe and avoids manual string equality checks. Algorithm defaults to sha256; sha512 is also secure, while md5 and sha1 are exposed for checksum and file-integrity compatibility ONLY and must not be used for passwords, signatures, or any security purpose. inputEncoding controls how value and expected are read before hashing (utf8 default, or hex/base64 for raw binary data) so binary blobs need no decode round-trip. The canonical use is matching a download against a vendor-published checksum.
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | The data to hash, interpreted per inputEncoding (raw text by default). | |
| expected | No | The expected lowercase-hex digest to compare against. Required when operation is "compare". | |
| algorithm | No | Digest algorithm. sha256 (default) or sha512 for security; md5/sha1 are checksum/compat only — not for security. | sha256 |
| operation | No | "generate" produces a digest; "compare" constant-time-checks value against expected. | generate |
| inputEncoding | No | How value (and expected's pre-image, when relevant) is decoded before hashing: utf8 text, hex, or base64. | utf8 |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | Present when the call failed. Absent on success. |
| digest | No | Lowercase-hex digest of value. Present for operation "generate". |
| matches | No | Constant-time equality of the computed digest against expected. Present for operation "compare". |
| algorithm | No | The algorithm used. |
| operation | No | The operation performed. |
| lengthInBytes | No | Digest size in bytes (32 for sha256, 64 for sha512, 20 for sha1, 16 for md5). Present for "generate". |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, covering the tool's safety profile. The description adds value beyond these: it reveals the timing-safe nature of compare, security caveats for md5/sha1, and the encoding behavior that prevents decode round-trips for binary blobs. It does not contradict annotations or mention any side effects, so the behavioral disclosure is strong.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but logically structured, starting with the core purpose, then operation, algorithm, encoding, and a canonical use case. Each sentence carries specific information with minimal fluff. It is slightly longer than necessary but remains efficient, and the front-loaded purpose ensures quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, the description need not explain return values. It covers the key behaviors: operation modes, algorithm choices, encoding implications, and the primary use case. Minor gaps exist (e.g., error behavior for missing expected in compare), but these are covered by the schema's required field and are acceptable for an agent to infer.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (each param has a description), giving a baseline of 3. The description enhances this with meaningful additions: algorithm security guidance, operation semantics (timing-safe compare), and inputEncoding purpose (hex/base64 for raw binary). It clarifies the relationship between operation, expected, and inputEncoding, going beyond the bare schema definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource pair: 'Generate a cryptographic digest of a value, or verify a value against an expected digest.' It clearly distinguishes between the two operations (generate/compare) and is unambiguous. The sibling tools (id generation, QR, encoding, geolocation) share no overlap, so the tool's purpose stands apart without needing additional differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides practical context: 'The canonical use is matching a download against a vendor-published checksum.' It also gives explicit algorithm guidance (sha256/sha512 for security, md5/sha1 only for checksum compatibility) and explains when compare is preferable ('constant-time-check ... timing-safe and avoids manual string equality checks'). While it doesn't name alternative tools, there are no direct competitors among siblings, so the guidance is sufficient for appropriate selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct operation: hashing, ID generation, QR generation, encoding/decoding, and IP geolocation. Even the two 'value' tools are cleanly separated by function—one is a cryptographic digest, the other is reversible character encoding. There is no realistic overlap that would cause an agent to mis-select.
All tools share the 'toolkit_' prefix and follow a snake_case verb_noun pattern: hash_value, generate_id, generate_qr, encode_value, geolocate_ip. The style is uniform and predictable, with no mixed case or arbitrary abbreviations.
Five tools is within the comfortable range for a helper server, and each tool earns its place as a separate, non-redundant utility. The slight deduction is because the broad 'toolkit' framing implies a larger helper surface, so the set feels a little lean but not problematically so.
Each utility covers a solid subset: hash and compare, multiple ID formats, several output encodings, and QR generation with multiple formats. However, as a general-purpose toolkit there are missing adjacent capabilities such as QR decoding, HMAC or fingerprint support, and broader string utility functions, so the overall domain coverage is plausible but not comprehensive.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Real-time planetary signal engine and Model Context Protocol (MCP) server for autonomous AI agents.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.812MIT
- AlicenseBqualityFmaintenanceA comprehensive Model Context Protocol server providing access to 70+ IT tools for developers and system administrators, including encoding/decoding, text manipulation, hashing, and network utilities.10015322TypeScriptMIT
- FlicenseNot gradedqualityCmaintenanceA secure Model Context Protocol server providing HTTP endpoints for AI agent tool execution, including file system operations, shell commands, and LLM-based code generation.1
- AlicenseAqualityDmaintenanceA Model Context Protocol server providing network diagnostic tools for AI agents, including connectivity testing, batch operations, local network info, and pcap analysis.344MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cyanheads/toolkit-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server