gramax-docportal-mcp
MCP server for accessing Gramax documentation portal. Enables searching articles, getting content, and navigation through natural language.
README
gramax-docportal-mcp
MCP-сервер для доступа к порталу документации Gramax. Позволяет искать статьи, получать контент и навигацию через Claude и другие LLM.
Инструменты
| Инструмент | Описание |
|---|---|
gramax_list_catalogs |
Список всех каталогов документации |
gramax_get_navigation |
Дерево навигации каталога |
gramax_search |
Поиск по статьям (фильтры по свойствам, языку, семантический поиск) |
gramax_get_article |
Содержимое статьи в Markdown |
Установка
uv tool install gramax-docportal-mcp
Настройка
Добавьте в .mcp.json:
{
"mcpServers": {
"gramax": {
"command": "uvx",
"args": ["gramax-docportal-mcp"],
"env": {
"GRAMAX_BASE_URL": "https://your-portal.example.com",
"GRAMAX_API_TOKEN": "ваш-api-токен"
}
}
}
}
Публичные порталы (без токена)
Если портал публичный (не требует авторизации), GRAMAX_API_TOKEN можно не задавать — сервер работает в анонимном режиме:
{
"mcpServers": {
"gramax": {
"command": "uvx",
"args": ["gramax-docportal-mcp"],
"env": {
"GRAMAX_BASE_URL": "https://your-portal.example.com"
}
}
}
}
Получение токена
Если портал защищён, откройте в браузере (будучи залогиненным на портале):
https://your-portal.example.com/api/user/token
Токен действует 30 дней. Для кастомного срока:
https://your-portal.example.com/api/user/token?expiresAt=2026-12-31
Без токена или с истёкшим токеном сервер получит 401 при первом запросе и вернёт русскоязычное сообщение об ошибке.
Переменные окружения
| Переменная | Описание | Обязательно |
|---|---|---|
GRAMAX_BASE_URL |
URL портала документации | Да |
GRAMAX_API_TOKEN |
API-токен (Bearer); не нужен для публичных порталов | Нет |
Расширенный поиск
gramax_search поддерживает дополнительные параметры для точной фильтрации:
| Параметр | Описание |
|---|---|
catalog_name |
Ограничить поиск одним каталогом |
search_type |
"vector" — семантический поиск (по умолчанию — полнотекстовый) |
language |
Язык статей: "ru", "en", "de", "zh" и др. |
resource_filter |
"without" — только статьи, "only" — только файлы |
property_filter |
Фильтр по свойствам статей (Продукт, Сегмент, Отрасль и др.) |
Примеры property_filter
{"op": "eq", "key": "Продукт", "value": "NSD"}
{"op": "contains", "key": "Сегмент", "list": ["Enterprise", "SMB"]}
{"op": "and", "filters": [
{"op": "eq", "key": "Тип контента", "value": "Кейс"},
{"op": "eq", "key": "Отрасль", "value": "Логистика"}
]}
В результатах поиска отображаются метаданные статей (🏷️) и рекомендованные результаты (⭐).
Лицензия
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.