Skip to main content
Glama
KGMobilians

@mobilpay/mcp-server

by KGMobilians

@mobilpay/mcp-server

npm version License: MIT

KG Financialの決済サービス連携のためのMCP(Model Context Protocol)サーバーです。

AIコーディングツール(Cursor, Claude Code, Kiro, VS Code, Windsurf, Claude Desktopなど)で自然言語で質問すると、決済連携ドキュメント(27件)を自動検索し、正確なコードを生成できます。

対応サービス

サービス

説明

ドキュメント数

MOBILPAY REST API

汎用決済連携 (携帯電話/クレジットカード/口座振替/仮想口座/簡易決済/モバイルT-money)

18件

内緒の女王(NEZO)

カカオ通知トーク決済リクエストサービス

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@latest

VS 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"]
    }
  }
}

提供ツール

共通

ツール

入力

機能

get-docs

keywords: string[]

BM25ベースの統合ドキュメント検索 (決済連携 + 内緒の女王 27件のドキュメント)

document-by-id

id: number

ドキュメントIDで全内容照会。id=0でドキュメントリストを確認

MOBILPAY 決済連携

ツール

入力

機能

get-payment-api-spec

api_name: string

MOBILPAY API全仕様照会

get-payment-code-example

api_name, language?

MOBILPAY言語別サンプルコード抽出

内緒の女王(NEZO)

ツール

入力

機能

get-nezo-api-spec

api_name: string

内緒の女王 API全仕様照会

get-nezo-code-example

api_name, language?

内緒の女王言語別サンプルコード抽出

対応ドキュメント

MOBILPAY REST API

分類

ドキュメント

API

取引登録(T-money Pay含む)、決済ウィンドウ呼び出し、認証/承認応答、決済承認(TID)、手動売上、仮想口座、決済キャンセル(/MUP/api/cancellation)、返金、エスクロー配送登録、現金領収書、HMAC整合性検証

ガイド

適用ガイド、一般決済フロー、ハイブリッド決済フロー、noti_url処理、ファイアウォール設定

リファレンス

決済手段/カード会社/金融機関コード表、エラーコード表

内緒の女王(NEZO)

分類

ドキュメント

API

決済リクエスト(/send)、コールバック/リターンURL、決済照会(/send/view)、決済キャンセル(/cancel)、決済再リクエスト

ガイド

はじめに、ファイアウォール設定

リファレンス

共通応答コード、MAC生成/検証ガイド

使用例

AIコーディングツールで以下のように質問してください:

MOBILPAY

  • "MOBILPAY携帯電話決済連携コードを作成して"

  • "取引登録APIの全仕様を見せて"

  • "HMAC検証のPythonサンプルコードを教えて"

  • "決済キャンセルAPIのパラメータは何?"

内緒の女王

  • "内緒の女王の通知トーク決済リクエストコードを作成して"

  • "内緒の女王のコールバックハンドラーをNode.jsで実装して"

  • "内緒の女王のMAC生成Javaサンプルを見せて"

  • "内緒の女王の決済照会後にキャンセルするコードを作って"

セキュリティルール

MCPサーバーがコード生成時に以下のルールを自動的に適用します:

MOBILPAY

  1. skey(サービスキー)は絶対にクライアントコードに含めないこと — 環境変数からロード

  2. HMAC整合性検証は必ずサーバーサイドで処理すること — エンドポイントごとにメッセージ構成が異なる (取引登録/承認 / キャンセル・返金 / エスクロー配送登録)

  3. noti_url処理時、重複取引防御ロジック(tidベースの冪等性)が必須

  4. 決済承認API(/MUP/api/approval)は必ずバックエンドから呼び出すこと

  5. 決済キャンセル/返金はハッシュ検証がある/MUP/api/cancellationを使用すること (旧/cancelは禁止)

  6. テスト: test.mobilians.co.kr / 運用: mup.mobilians.co.kr

内緒の女王

  1. svc_idMAC_KEYは絶対にクライアントコードに含めないこと — 環境変数からロード

  2. HmacSHA256 MAC生成/検証は必ずサーバーサイドで処理すること

  3. callback_urlハンドラーに重複取引防御ロジック(trade_noベースの冪等性)が必須

  4. テスト: 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    → 내죠여왕 코드 예제

サーバー起動時にバンドルされたマークダウンドキュメント(27件)をチャンク分割後、BM25インデックスを構築します。

Available Tools

6 tools
document-by-idA

문서 ID로 KG파이낸셜 결제서비스 연동 문서 전체를 조회합니다. (MOBILPAY REST API + 내죠여왕 알림톡 결제)

get-docs 검색 결과에서 특정 문서의 전체 내용이 필요할 때 사용합니다. ID 목록은 이 Tool을 id=0으로 호출하면 확인할 수 있습니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes문서 ID. 0을 입력하면 전체 문서 목록을 반환합니다.

TDQS

A4.2/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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]

  1. skey(서비스키)는 절대 클라이언트 코드에 포함 금지. 환경변수에서 로드.

  2. HMAC 무결성 검증은 반드시 서버 사이드에서 처리.

  3. noti_url 처리 시 중복 거래 방어 로직(tid 기반 멱등성) 필수.

  4. 결제 승인 API(/MUP/api/approval)는 반드시 백엔드에서 호출.

  5. 테스트: test.mobilians.co.kr / 운영: mup.mobilians.co.kr [내죠여왕]

  6. svc_id와 MAC_KEY는 절대 클라이언트 코드에 포함 금지. 환경변수에서 로드.

  7. HmacSHA256 MAC 생성/검증은 반드시 서버 사이드에서 처리.

  8. callback_url 처리 시 중복 거래 방어 로직(trade_no 기반 멱등성) 필수.

  9. 테스트: test.mpps.co.kr / 운영: www.nezo.co.kr

ParametersJSON Schema
NameRequiredDescriptionDefault
keywordsYes검색 키워드 배열. 예: ["거래등록", "sid"] 또는 ["알림톡", "결제요청"]

TDQS

C2.8/5.0
Behavior2/5

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.

Conciseness2/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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)

보안 규칙:

  1. svc_id와 MAC_KEY는 절대 클라이언트 코드에 포함 금지. 환경변수에서 로드.

  2. HmacSHA256 MAC 생성/검증은 반드시 서버 사이드에서 처리.

  3. callback_url 핸들러에 trade_no 기반 멱등성 로직 필수.

  4. 테스트: test.mpps.co.kr / 운영: www.nezo.co.kr

ParametersJSON Schema
NameRequiredDescriptionDefault
api_nameYesAPI 이름. 예: 'send', '결제요청', 'callback', 'mac', '시작하기'

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 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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 예제가 포함되어 있습니다.

보안 규칙:

  1. svc_id와 MAC_KEY는 환경변수에서 로드. 절대 클라이언트 코드에 포함 금지.

  2. MAC 생성/검증은 반드시 서버 사이드에서 처리.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_nameYesAPI 이름. 예: 'send', 'callback', 'mac', 'cancel'
languageNo프로그래밍 언어 필터. 예: 'java', 'python', 'node', 'php', 'csharp'

TDQS

B3.3/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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검증)

보안 규칙:

  1. skey(서비스키)는 절대 클라이언트 코드에 포함 금지. 환경변수에서 로드.

  2. HMAC 무결성 검증은 반드시 서버 사이드에서 처리.

  3. 결제 승인 API(/MUP/api/approval)는 반드시 백엔드에서 호출.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_nameYesAPI 이름. 예: 'registration', '거래등록', 'cancellation', '결제취소', 'escrow-delivery'

TDQS

A4.3/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness5/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 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.

Parameters5/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 예제가 포함되어 있습니다.

보안 규칙:

  1. skey는 환경변수에서 로드. 절대 클라이언트 코드에 포함 금지.

  2. HMAC 검증, 결제 승인은 반드시 서버 사이드에서 처리.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_nameYesAPI 이름. 예: 'registration', 'hmac', 'approval-tid', 'noti-url'
languageNo프로그래밍 언어 필터. 예: 'java', 'python', 'node', 'php', 'csharp'

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

  1. 6 tool updatesv2.1.0
    • First observeddocument-by-id
    • First observedget-docs
    • First observedget-nezo-api-spec
    • First observedget-nezo-code-example
    • First observedget-payment-api-spec
    • First observedget-payment-code-example

TDQS

A3.8/5.0

Scored across 6 tools

Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness5/5

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

ActivityInactive
ResponsivenessNo issues

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.

  • Korea-native MCP gateway: Korean commerce, payments, messaging, gov & finance APIs for AI agents.

Related MCP Servers