@mobilpay/mcp-server
@mobilpay/mcp-server
Это сервер MCP (Model Context Protocol) для интеграции платежных сервисов KG Financial.
Если вы зададите вопрос на естественном языке в инструментах ИИ-кодинга (Cursor, Claude Code, Kiro, VS Code, Windsurf, Claude Desktop и т. д.), он автоматически выполнит поиск по документации по интеграции платежей (27 документов) и сгенерирует точный код.
Поддерживаемые сервисы
Сервис | Описание | Кол-во документов |
MOBILPAY REST API | Универсальная интеграция платежей (мобильный телефон/кредитная карта/банковский перевод/виртуальный счет/простая оплата/Mobile T-money) | 18 |
NEZO (내죠여왕) | Сервис запроса платежей через Kakao AlimTalk | 9 |
Related MCP server: samsung-checkout-mcp
Установка и настройка
Требуется Node.js 18+ (цель ES2022)
Используется протокол передачи stdio — сеть не требуется, возможна автономная работа
Cursor
.cursor/mcp.json:
{
"mcpServers": {
"mobilpay": {
"command": "npx",
"args": ["-y", "@mobilpay/mcp-server@latest"]
}
}
}Claude Code (CLI)
claude mcp add mobilpay -- npx -y @mobilpay/mcp-server@latestVS Code (GitHub Copilot)
.vscode/mcp.json:
{
"servers": {
"mobilpay": {
"command": "npx",
"args": ["-y", "@mobilpay/mcp-server@latest"]
}
}
}Windsurf
.windsurf/mcp.json:
{
"mcpServers": {
"mobilpay": {
"command": "npx",
"args": ["-y", "@mobilpay/mcp-server@latest"]
}
}
}Kiro (AWS)
.kiro/settings/mcp.json:
{
"mcpServers": {
"mobilpay": {
"command": "npx",
"args": ["-y", "@mobilpay/mcp-server@latest"]
}
}
}Claude Desktop
claude_desktop_config.json:
{
"mcpServers": {
"mobilpay": {
"command": "npx",
"args": ["-y", "@mobilpay/mcp-server@latest"]
}
}
}Предоставляемые инструменты
Общие
Инструмент | Ввод | Функция |
|
| Интегрированный поиск по документам на основе BM25 (интеграция платежей + 27 документов NEZO) |
|
| Просмотр полного содержимого по ID документа. Используйте |
Интеграция платежей MOBILPAY
Инструмент | Ввод | Функция |
|
| Просмотр полной спецификации MOBILPAY API |
|
| Извлечение примеров кода MOBILPAY по языкам |
NEZO (내죠여왕)
Инструмент | Ввод | Функция |
|
| Просмотр полной спецификации API NEZO |
|
| Извлечение примеров кода NEZO по языкам |
Поддерживаемая документация
MOBILPAY REST API
Категория | Документы |
API | Регистрация транзакции (включая T-money Pay), вызов платежного окна, ответ аутентификации/одобрения, одобрение платежа (TID), ручное списание, виртуальный счет, отмена платежа ( |
Руководство | Руководство по применению, поток обычных платежей, поток гибридных платежей, обработка noti_url, настройка брандмауэра |
Справочник | Таблица кодов способов оплаты/карточных компаний/финансовых учреждений, таблица кодов ошибок |
NEZO (내죠여왕)
Категория | Документы |
API | Запрос платежа (/send), URL обратного вызова/возврата, запрос платежа (/send/view), отмена платежа (/cancel), повторный запрос платежа |
Руководство | Начало работы, настройка брандмауэра |
Справочник | Общие коды ответов, руководство по созданию/проверке MAC |
Примеры использования
В инструментах ИИ-кодинга можно задавать вопросы следующим образом:
MOBILPAY
"Напиши код для интеграции оплаты мобильным телефоном через MOBILPAY"
"Покажи полную спецификацию API регистрации транзакций"
"Дай пример кода на Python для проверки HMAC"
"Какие параметры у API отмены платежа?"
NEZO
"Напиши код для запроса платежа через AlimTalk в NEZO"
"Реализуй обработчик обратного вызова NEZO на Node.js"
"Покажи пример на Java для создания MAC в NEZO"
"Создай код для запроса платежа в NEZO, а затем его отмены"
Правила безопасности
MCP-сервер автоматически применяет следующие правила при генерации кода:
MOBILPAY
skey(сервисный ключ) категорически запрещено включать в клиентский код — загружайте из переменных окруженияПроверка целостности HMAC должна выполняться только на стороне сервера — структура сообщений различается для разных эндпоинтов (регистрация/одобрение транзакции / отмена/возврат / регистрация доставки эскроу)
При обработке
noti_urlобязательна логика защиты от дублирования транзакций (идемпотентность на основеtid)API одобрения платежа (
/MUP/api/approval) должен вызываться только с бэкендаДля отмены/возврата платежа используйте
/MUP/api/cancellationс проверкой хеша (старый/cancelзапрещен)Тест:
test.mobilians.co.kr/ Продакшн:mup.mobilians.co.kr
NEZO
svc_idиMAC_KEYкатегорически запрещено включать в клиентский код — загружайте из переменных окруженияСоздание/проверка HmacSHA256 MAC должны выполняться только на стороне сервера
В обработчике
callback_urlобязательна логика защиты от дублирования транзакций (идемпотентность на основеtrade_no)Тест:
test.mpps.co.kr/ Продакшн:www.nezo.co.kr
Принцип работы
AI 도구 → MCP 프로토콜 → 6개 Tool 중 선택 → 문서 검색/조회 → 결과 반환
├── get-docs → 통합 BM25 키워드 검색
├── document-by-id → 문서 ID 기반 조회
├── get-payment-api-spec → MOBILPAY API 명세
├── get-payment-code-example → MOBILPAY 코드 예제
├── get-nezo-api-spec → 내죠여왕 API 명세
└── get-nezo-code-example → 내죠여왕 코드 예제При запуске сервера выполняется разбиение на чанки входящих в комплект документов в формате Markdown (27 шт.) и построение индекса BM25.
Available Tools
6 toolsdocument-by-idA
문서 ID로 KG파이낸셜 결제서비스 연동 문서 전체를 조회합니다. (MOBILPAY REST API + 내죠여왕 알림톡 결제)
get-docs 검색 결과에서 특정 문서의 전체 내용이 필요할 때 사용합니다. ID 목록은 이 Tool을 id=0으로 호출하면 확인할 수 있습니다.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 문서 ID. 0을 입력하면 전체 문서 목록을 반환합니다. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It implies a read-only retrieval operation (조회합니다). It adds context about special id=0 behavior but does not disclose other traits such as error handling, rate limits, or output format. Adequate but not thorough.
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 concise (3 sentences), front-loaded with the main purpose, and structured with a clear usage scenario. No unnecessary words.
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 simple single-parameter retrieval tool, the description covers the main purpose, usage context, and a key special case. It references sibling tool get-docs for search. Lacks details about output format but is sufficient given no output schema.
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% with a basic description. The description adds value by explaining the special meaning of id=0 (list all IDs), which is not in the schema. This enhances parameter understanding.
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 clearly states the tool retrieves entire documentation for a specific integration by ID, and distinguishes from sibling tool get-docs by specifying that get-docs is for search results while this tool gets full content. It also explains the special id=0 behavior for listing IDs.
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 explicitly tells when to use: when full content from get-docs search results is needed. It also provides usage guidance for id=0 to list IDs. However, it does not explicitly state when not to use it or list alternatives beyond get-docs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-docsC
KG파이낸셜 결제서비스 연동 문서를 검색합니다. (MOBILPAY REST API + 내죠여왕 알림톡 결제)
지원 문서: [MOBILPAY] 거래등록(티머니페이 포함), 결제창 호출, 인증/승인 응답, 결제승인(TID), 수동매입, 가상계좌, 결제취소(/cancellation), 환불, 에스크로 배송등록, 현금영수증, HMAC 무결성 검증, 결제플로우(일반/하이브리드), noti_url 처리, 방화벽 설정, 에러코드표, 결제수단/카드사/금융기관 코드표 [내죠여왕] 결제요청(/send), 콜백/리턴URL, 결제조회(/send/view), 결제취소(/cancel), 결제재요청, MAC 생성/검증, 응답코드, 방화벽 설정
보안 규칙 (생성 코드에 반드시 준수): [MOBILPAY]
skey(서비스키)는 절대 클라이언트 코드에 포함 금지. 환경변수에서 로드.
HMAC 무결성 검증은 반드시 서버 사이드에서 처리.
noti_url 처리 시 중복 거래 방어 로직(tid 기반 멱등성) 필수.
결제 승인 API(/MUP/api/approval)는 반드시 백엔드에서 호출.
테스트: test.mobilians.co.kr / 운영: mup.mobilians.co.kr [내죠여왕]
svc_id와 MAC_KEY는 절대 클라이언트 코드에 포함 금지. 환경변수에서 로드.
HmacSHA256 MAC 생성/검증은 반드시 서버 사이드에서 처리.
callback_url 처리 시 중복 거래 방어 로직(trade_no 기반 멱등성) 필수.
테스트: test.mpps.co.kr / 운영: www.nezo.co.kr
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | Yes | 검색 키워드 배열. 예: ["거래등록", "sid"] 또는 ["알림톡", "결제요청"] |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description should disclose behavioral traits. It only lists documents and security rules, but does not mention read-only nature, side effects, rate limits, or return format. The tool's output behavior is completely unclear.
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 verbose, mixing tool purpose, a long list of document types, and extensive security rules that are not directly relevant to the tool's operation. The structure is front-loaded with purpose, but the second half is overly detailed and could be trimmed.
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?
The description provides a comprehensive list of available documents and security rules, which is useful for context. However, it lacks information about return format, pagination, or error handling. Without an output schema, the description should cover these gaps more fully.
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 input schema fully describes the single parameter (keywords) with a clear example. The description adds no additional meaning beyond the schema, so baseline of 3 is appropriate.
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 clearly states the tool searches for KG파이낸셜 payment integration documents, specifying two systems and listing supported document types. However, it does not differentiate from sibling tools like document-by-id or get-nezo-api-spec, which limits clarity for selection.
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?
No guidance is provided on when to use this tool versus alternatives. The description includes security rules for coding, but does not help an agent decide between this tool and other document tools on the same server.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-nezo-api-specA
내죠여왕(NEZO) 알림톡 결제서비스 API의 전체 명세를 조회합니다.
요청/응답 파라미터, 예제 코드를 포함한 전체 문서를 반환합니다. 키워드 검색이 아닌 특정 API를 정확히 조회할 때 사용합니다.
사용 가능한 api_name: send(결제요청), callback(콜백/리턴URL), search(결제조회), cancel(결제취소), resend(재요청), start(시작하기), mac(MAC검증가이드), 응답코드(response-codes), 방화벽(firewall)
보안 규칙:
svc_id와 MAC_KEY는 절대 클라이언트 코드에 포함 금지. 환경변수에서 로드.
HmacSHA256 MAC 생성/검증은 반드시 서버 사이드에서 처리.
callback_url 핸들러에 trade_no 기반 멱등성 로직 필수.
테스트: test.mpps.co.kr / 운영: www.nezo.co.kr
| Name | Required | Description | Default |
|---|---|---|---|
| api_name | Yes | API 이름. 예: 'send', '결제요청', 'callback', 'mac', '시작하기' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description adds meaningful behavioral context: security rules (client-side avoidance of keys, server-side HMAC, idempotency, environment separation). It implies the tool is read-only and returns full documentation, but doesn't detail output format or side effects.
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 reasonably concise and well-structured: purpose sentence, usage context, list of api_names, then security rules. Some redundancy exists (e.g., security rules could be separate), but overall it's clear and organized.
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 no output schema, the description should mention the format of the returned spec (e.g., JSON). It covers purpose, parameters, and security, but lacks details on authentication prerequisites and return structure, leaving some gaps.
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 covers the api_name parameter well (100% coverage). The description adds value by listing all valid values with translations and notes, going beyond the schema's examples.
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 clearly states that the tool retrieves the full specification of the NEZO Alimtalk payment service API for a specific api_name, distinguishing it from sibling tools like get-nezo-code-example. It lists all possible api_name values, making the purpose very specific.
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 tells when to use this tool (exact API spec lookup, not keyword search) and provides context for choosing api_name. However, it does not explicitly compare with sibling tools or state when not to use it, missing some guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-nezo-code-exampleB
내죠여왕(NEZO) 알림톡 결제서비스의 언어별 예제 코드를 조회합니다.
문서에 포함된 코드 블록을 언어 필터링하여 반환합니다. MAC 가이드 문서에 Java, C#, Node.js, Python, PHP 예제가 포함되어 있습니다.
보안 규칙:
svc_id와 MAC_KEY는 환경변수에서 로드. 절대 클라이언트 코드에 포함 금지.
MAC 생성/검증은 반드시 서버 사이드에서 처리.
| Name | Required | Description | Default |
|---|---|---|---|
| api_name | Yes | API 이름. 예: 'send', 'callback', 'mac', 'cancel' | |
| language | No | 프로그래밍 언어 필터. 예: 'java', 'python', 'node', 'php', 'csharp' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description carries the full burden. It mentions returning code blocks filtered by language and includes security rules (e.g., do not embed keys in client code). However, it does not disclose error behavior, whether multiple matches are returned, or the exact output structure.
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 about five sentences, front-loaded with the main purpose, and clearly written. The security rules are relevant but slightly extend the length; still efficient for the information conveyed.
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 simple lookup tool with no output schema, the description explains the purpose, parameters, and security considerations. However, it does not describe the return format or behavior when no matching examples exist, leaving moderate gaps.
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% and both parameters have descriptions. The description adds value by listing the available languages (Java, C#, Node.js, Python, PHP) and mentioning the MAC guide document, which helps clarify valid values and context beyond the schema.
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 clearly states the tool looks up language-specific example code for NEZO notification payment service, with a verb and resource. It distinguishes from siblings by specifying 'NEZO' scope, but does not explicitly differentiate from get-payment-code-example.
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?
No guidance on when to use this tool versus alternatives like get-payment-code-example or get-docs. The description lacks any 'when to use' or 'when not to use' context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-payment-api-specA
MOBILPAY REST API의 전체 명세를 조회합니다.
요청/응답 파라미터, 예제 코드를 포함한 전체 문서를 반환합니다. 키워드 검색이 아닌 특정 API를 정확히 조회할 때 사용합니다.
사용 가능한 api_name: registration(거래등록), payment-window(결제창), auth-response(인증응답), approval-tid(결제승인), purchase(수동매입), virtual-account(가상계좌), cancellation(결제취소), refund(환불), escrow-delivery(에스크로 배송등록), cash-receipt(현금영수증), hmac(HMAC검증)
보안 규칙:
skey(서비스키)는 절대 클라이언트 코드에 포함 금지. 환경변수에서 로드.
HMAC 무결성 검증은 반드시 서버 사이드에서 처리.
결제 승인 API(/MUP/api/approval)는 반드시 백엔드에서 호출.
| Name | Required | Description | Default |
|---|---|---|---|
| api_name | Yes | API 이름. 예: 'registration', '거래등록', 'cancellation', '결제취소', 'escrow-delivery' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description carries the burden. It discloses security-sensitive rules (e.g., skey, HMAC) but does not mention read-only nature, error handling, or response format. Adequate but not comprehensive.
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?
Well-organized into three sections (purpose, API list, security rules). A bit verbose but not excessive. Each section serves a clear purpose.
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-parameter tool with no output schema, the description is thorough: explains what it returns, lists valid inputs, and provides essential security context. No gaps.
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% with one parameter. The description adds significant value by listing all valid api_name values explicitly, beyond the schema's examples, thus compensating fully.
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?
Clearly states it retrieves the full specification of the MOBILPAY REST API, including parameters and example code. Explicitly distinguishes from keyword search or fuzzy lookup by specifying '키워드 검색이 아닌 특정 API를 정확히 조회할 때 사용합니다.'
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 usage context (exact API lookup) and security rules (skey, HMAC, approval API). However, it does not explicitly compare with sibling tools like get-nezo-api-spec or get-docs, leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-payment-code-exampleA
MOBILPAY REST API의 언어별 예제 코드를 조회합니다.
문서에 포함된 코드 블록을 언어 필터링하여 반환합니다. HMAC 검증 문서에는 Java, C#, Node.js, Python, PHP 예제가 포함되어 있습니다.
보안 규칙:
skey는 환경변수에서 로드. 절대 클라이언트 코드에 포함 금지.
HMAC 검증, 결제 승인은 반드시 서버 사이드에서 처리.
| Name | Required | Description | Default |
|---|---|---|---|
| api_name | Yes | API 이름. 예: 'registration', 'hmac', 'approval-tid', 'noti-url' | |
| language | No | 프로그래밍 언어 필터. 예: 'java', 'python', 'node', 'php', 'csharp' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries full burden. It explains the tool returns filtered code blocks and adds security context but does not explicitly state it is read-only or non-destructive.
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 concise, well-structured, and front-loaded with the purpose, followed by filtering explanation and important security rules.
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 simple retrieval tool with no output schema, the description covers the essential behavior and security considerations, though it omits the exact output format.
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% with descriptions for both parameters. The description adds some context (listing example languages from HMAC doc), but does not significantly enhance understanding beyond the schema.
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 clearly states it retrieves language-specific example code for MOBILPAY REST API, distinguishing it from siblings like get-nezo-code-example which target a different API.
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 includes important security rules for using the code (e.g., server-side processing), but does not explicitly guide when to use this tool vs alternatives or when not to use it.
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.
6 tool updates
v2.1.0- First observed
document-by-id - First observed
get-docs - First observed
get-nezo-api-spec - First observed
get-nezo-code-example - First observed
get-payment-api-spec - First observed
get-payment-code-example
TDQS
Scored across 6 tools
Each tool has a distinct purpose: searching docs, retrieving a specific doc by ID, and fetching API specs or code examples for two separate services (MOBILPAY and NEZO). No overlap or ambiguity.
Most tools follow a 'get-{service}-{type}' pattern for specs and examples, but 'document-by-id' and 'get-docs' break the pattern slightly. Overall, the naming is clear and predictable.
6 tools cover all essential needs for a documentation server: search, ID-based retrieval, specs, and code examples for two APIs. Neither too few nor too many.
The set provides complete access to documentation: search, full document retrieval, specific API specs, and code examples. No obvious gaps in coverage for the stated domain.
Maintenance
Related MCP Connectors
The CustomGPT.ai MCP server is a fully managed, RAG-powered endpoint that connects large language models with private knowledge bases and external data sources. It provides tools for retrieval-augmented generation queries (send_message), data ingestion (upload_file), and source listing, enabling AI agents to query private documents like PDFs with high accuracy and real-time citations.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
The Fireflies MCP Server enables AI tools to connect directly to meeting data from Fireflies.ai, providing access to meeting transcripts, summaries, action items, and insights without switching platforms. It includes capabilities for querying cross-meeting data for analysis (such as sales insights or product feedback), and a separate Documentation MCP Server that allows searching the Fireflies knowledge base for API references, guides, and code examples.
- mcpweaveOAuthcom.mcpweave
Korea-native MCP gateway: Korean commerce, payments, messaging, gov & finance APIs for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server providing a searchable security knowledge base for AI coding assistants, enabling retrieval of secure-coding instructions and feature-specific security guidance.8 npmMIT
- FlicenseAqualityCmaintenanceMCP server for Samsung Smart TV in-app payment (Samsung Checkout/DPI) development, enabling AI coding tools to provide real-time API references, code generation, troubleshooting, and implementation guides.7-
- AlicenseNot gradedqualityDmaintenanceA secure MCP server providing intelligent documentation search across multiple frameworks using ChromaDB vector storage, enabling semantic search and integration with AI tools.MIT
- FlicenseNot gradedqualityBmaintenanceMCP server that provides a searchable knowledge base of internal development standards, enabling AI coding agents to consistently reference and comply with them.-