Max Docs
БесплатноНе проверенProvides comprehensive documentation for MAX Platform, including Bot API endpoints, guides, Bridge API, and UI components, via MCP tools and resources for AI co
Описание
Provides comprehensive documentation for MAX Platform, including Bot API endpoints, guides, Bridge API, and UI components, via MCP tools and resources for AI coding agents.
README
MCP-сервер с локальной документацией по MAX Platform для AI-кодинг-агентов. После сборки сервер отдаёт документацию через stdio и покрывает не только MAX Bot API, но и руководства, mini apps / MAX Bridge API и библиотеку UI-компонентов.
Что покрывает проект
- 29 эндпоинтов MAX Bot API
- 26 моделей данных
- 20 руководств в 8 категориях
- MAX Bridge API для мини-приложений: 6 объектов и 17 событий
- 35 UI-компонентов MAX UI
- 8 MCP tools (поиск с фильтрами, примеры кода, endpoint lookup)
- 4 MCP prompts (создание бота, паттерны сообщений, мини-приложения, диагностика)
- Расширенный набор resources с автодополнением
Требования
- Node.js
>= 18 - npm
>= 8
Проверка:
node --version
npm --version
Установка и сборка
git clone https://github.com/Launchery/max_docs_mcp.git
cd max_docs_mcp
npm install
npm run build
Точка входа после сборки: dist/index.js.
Для локального запуска из корня репозитория уже есть пример в ./.mcp.json.
Быстрый старт
git clone https://github.com/Launchery/max_docs_mcp.git
cd max_docs_mcp
npm install
npm run build
echo "$(pwd)/dist/index.js"
Дальше подключите этот путь к вашему MCP-клиенту как stdio-сервер:
{
"mcpServers": {
"max-docs": {
"command": "node",
"args": ["/absolute/path/to/max_docs_mcp/dist/index.js"]
}
}
}
Подключение к клиентам
Сервер использует stdio, поэтому схема везде одна и та же: клиент запускает node <path>/dist/index.js как дочерний процесс.
Claude Code
claude mcp add --scope user max-docs -- node "/absolute/path/to/max_docs_mcp/dist/index.js"
Проверка в сессии:
/mcp
Claude Desktop
Добавьте блок mcpServers.max-docs в claude_desktop_config.json:
{
"mcpServers": {
"max-docs": {
"command": "node",
"args": ["/absolute/path/to/max_docs_mcp/dist/index.js"]
}
}
}
Cursor
Создайте .cursor/mcp.json в рабочем проекте:
{
"mcpServers": {
"max-docs": {
"command": "node",
"args": ["/absolute/path/to/max_docs_mcp/dist/index.js"]
}
}
}
Windsurf
Добавьте тот же stdio-сервер в mcp_config.json:
{
"mcpServers": {
"max-docs": {
"command": "node",
"args": ["/absolute/path/to/max_docs_mcp/dist/index.js"]
}
}
}
VS Code + Continue
mcpServers:
- name: max-docs
command: node
args:
- /absolute/path/to/max_docs_mcp/dist/index.js
OpenAI Codex CLI
{
"mcpServers": {
"max-docs": {
"command": "node",
"args": ["/absolute/path/to/max_docs_mcp/dist/index.js"]
}
}
}
Или через флаг:
codex --mcp-config '{"max-docs":{"command":"node","args":["/absolute/path/to/max_docs_mcp/dist/index.js"]}}'
OpenCode CLI
[mcp.max-docs]
type = "stdio"
command = "node"
args = ["/absolute/path/to/max_docs_mcp/dist/index.js"]
Demo
Для быстрой записи GIF / скринкаста / терминального демо см. DEMO-SCRIPT.md.
Короткая версия demo path:
npm install && npm run build- показать MCP config с
max-docs - показать успешный
initialize - показать
tools/callдляlist_guidesилиsearch_docs
Проверка работоспособности
Сборка:
npm run build
Прямой запуск:
npm start
Сервер должен запуститься и ждать JSON-RPC сообщения по stdin.
Проверка initialize вручную:
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}' | node dist/index.js
В ответе должны быть:
"name": "max-docs""version": "2.0.0"
Проверка tool-вызова вручную:
printf '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}\n{"jsonrpc":"2.0","method":"notifications/initialized"}\n{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_guides","arguments":{}}}\n' | node dist/index.js 2>/dev/null
Доступные tools
Сервер регистрирует 7 инструментов.
| Tool | Аргументы | Что возвращает |
|---|---|---|
list_endpoints |
нет | Таблицу всех 29 эндпоинтов MAX Bot API |
get_endpoint |
method, path |
Полную документацию конкретного эндпоинта |
search_docs |
query |
Поиск по endpoint-ам, моделям, guide-ам, Bridge API и UI-компонентам |
list_guides |
category? |
Список всех guide-ов или guide-ов выбранной категории |
get_guide |
id |
Полный текст guide-а по ID |
get_bridge_api |
object? |
Обзор MAX Bridge API, объект Bridge API или список событий |
get_component |
name? |
Обзор MAX UI или описание конкретного компонента |
Категории для list_guides
platformchatbottutorialssdkmini-appschannelspartnerslegal
Доступные guide ID
connection-guide
service-selection
bot-creation
nocode-bot-creation
bot-management
bot-coding-preparation
hello-bot-javascript
hello-bot-go
sdk-javascript
sdk-go
channel-creation
channel-management
partner-integration
legal-rules
legal-requirements
legal-agreement
legal-privacy
bridge-api
mini-apps-introduction
data-validation
Доступные Bridge API объекты
BackButton
ScreenCapture
HapticFeedback
BiometricManager
DeviceStorage
SecureStorage
events
Примеры компонентов для get_component
Button
Input
Avatar.Container
Flex
Typography.Title
Profile
Доступные resources
API и модели
max-docs://overviewmax-docs://api/botmax-docs://api/chatsmax-docs://api/pinned-messagesmax-docs://api/membersmax-docs://api/messagesmax-docs://api/subscriptionsmax-docs://api/uploadsmax-docs://api/callbacksmax-docs://modelsmax-docs://models/{name}
Руководства
max-docs://guidesmax-docs://guides/platformmax-docs://guides/chatbotmax-docs://guides/tutorialsmax-docs://guides/sdkmax-docs://guides/mini-appsmax-docs://guides/channelsmax-docs://guides/partnersmax-docs://guides/legalmax-docs://guides/{id}
Mini apps / Bridge API
max-docs://mini-appsmax-docs://mini-apps/bridge-apimax-docs://mini-apps/bridge-api/eventsmax-docs://mini-apps/bridge-api/{name}
UI components
max-docs://ui-componentsmax-docs://ui-components/{name}
Примеры запросов к агенту
Покажи все эндпоинты MAX Bot API и объясни, какой использовать для отправки сообщения.
Используй документацию MAX и покажи guide по созданию чат-бота.
Какие события есть у MAX Bridge API и как слушать кнопку "назад"?
Найди в MAX UI компонент Button и покажи его параметры.
Подскажи, как валидировать данные мини-приложения в MAX.
Структура проекта
max_docs_mcp/
├── .mcp.json
├── README.md
├── package.json
├── tsconfig.json
├── src/
│ ├── index.ts
│ ├── server.ts
│ ├── data/
│ │ ├── overview.ts
│ │ ├── types.ts
│ │ ├── endpoints/
│ │ ├── models/
│ │ ├── guides/
│ │ ├── mini-apps/
│ │ └── ui-components/
│ ├── resources/
│ │ └── registry.ts
│ ├── tools/
│ │ ├── list-endpoints.ts
│ │ ├── get-endpoint.ts
│ │ ├── search-docs.ts
│ │ ├── list-guides.ts
│ │ ├── get-guide.ts
│ │ ├── get-bridge-api.ts
│ │ └── get-component.ts
│ └── utils/
│ ├── formatter.ts
│ └── search.ts
└── dist/
Разработка
Режимы работы:
npm run build
npm run dev
npm start
Если вы добавляете новую документацию:
- Обновите соответствующий файл в
src/data/... - Добавьте экспорт в нужный
index.ts - Если появляется новый MCP tool или resource, зарегистрируйте его в
src/server.tsилиsrc/resources/registry.ts - Пересоберите проект через
npm run build
Устранение неполадок
Сервер не запускается
npm run build
node dist/index.js
Если процесс не падает сразу, сервер стартует корректно и ждёт stdin.
Клиент не видит MCP-сервер
- Проверьте, что указан абсолютный путь к
dist/index.js - Пересоберите проект:
npm run build - Перезапустите MCP-клиент после изменения конфигурации
- Для Claude Code проверьте
/mcp
Документация выглядит старой
git pull
npm install
npm run build
Ошибка Cannot find module
Переустановите зависимости и пересоберите проект:
rm -rf node_modules dist
npm install
npm run build
MCP Registry
Сервер подготовлен для submission в MCP Registry. Файл server.json содержит метаданные для публикации.
# После npm publish
# Submit to MCP Registry (requires GitHub auth)
curl -X POST https://registry.modelcontextprotocol.io/v0/publish \
-H "Authorization: Bearer $MCP_REGISTRY_TOKEN" \
-H "Content-Type: application/json" \
--data @server.json
Установить Max Docs в Claude Desktop, Claude Code, Cursor
unyly install max-docsСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add max-docs -- npx -y max-docs-mcp-serverFAQ
Max Docs MCP бесплатный?
Да, Max Docs MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Max Docs?
Нет, Max Docs работает без API-ключей и переменных окружения.
Max Docs — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Max Docs в Claude Desktop, Claude Code или Cursor?
Открой Max Docs на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
LibreOffice Tools
Enables AI agents to read, write, and edit Office documents via LibreOffice with token-efficient design. Supports multiple formats including DOCX, XLSX, PPTX, a
автор: passerbyflutterdannote/figma-use
Full Figma control: create shapes, text, components, set styles, auto-layout, variables, export. 80+ tools.
автор: dannoteLogo.dev
Search and retrieve company logos by brand or domain. Customize size, format, and theme to match your design needs. Accelerate design, prototyping, and content
автор: NOVA-3951PIX4Dmatic
Enables GUI automation for controlling PIX4Dmatic on Windows through MCP. Supports launching, focusing, capturing screenshots, sending hotkeys, clicking UI elem
автор: jangjo123Compare Max Docs with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории design
