Skip to main content
Glama

APICK Finance

Server Details

Korean bank account verification: holder name lookup, 1 KRW deposit, bank codes

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
lead788/apick-mcp
GitHub Stars
0
Server Listing
apick-mcp

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.5/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: listing bank codes, looking up account holder names, and sending a 1-won verification deposit. No overlap or ambiguity between them.

Naming Consistency4/5

All names are lowercase snake_case, but the pattern is not uniform: 'bank_code' and 'account_realname' are noun phrases while 'transfer_1won' is a verb phrase. Still readable and predictable within this small set.

Tool Count5/5

With exactly 3 tools, the set is well-scoped for the server's purpose of Korean bank account verification. Each tool is necessary and earns its place.

Completeness5/5

The tool surface covers the full verification workflow: lookup bank codes, check account holder, and perform the 1-won verification transfer. No obvious gaps for the stated domain.

Available Tools

3 tools
account_realname계좌 예금주 실명 조회A
Read-only
Inspect

Look up the account holder name of a Korean bank account. 대한민국 은행 계좌의 예금주명을 조회합니다. 송금 전 예금주 확인 등에 사용합니다. bank_code 또는 bank_name 중 하나는 입력해야 합니다. [호출당 60포인트]

ParametersJSON Schema
NameRequiredDescriptionDefault
bank_codeNo은행 코드 (bank_code Tool로 조회 가능, 예: 004)
bank_nameNo은행명 (예: 국민). bank_code 대신 입력 가능
account_numYes계좌번호 (숫자만, 하이픈 제외)
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description aligns with a read-only lookup. It adds value by disclosing the per-call cost ('[호출당 60포인트]') and the requirement to provide at least one of bank_code/bank_name. No contradiction with annotations.

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 concise but includes both English and Korean versions of the same information, which is slightly redundant. However, it is front-loaded with the core purpose, and the cost note is useful. Each sentence earns its place.

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 read-only lookup with no output schema, the description provides sufficient context: purpose, usage scenario, input constraints, and cost. Given the sibling tools and annotations, the information is complete enough for an agent to select and invoke the tool.

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 descriptions cover 100% of parameters, and the description supplements them by clarifying the XOR relationship between bank_code and bank_name, and references the bank_code Tool for obtaining codes. This adds meaning 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 'Look up the account holder name of a Korean bank account,' specifying the verb (look up) and resource (account holder name). It is distinct from sibling tools like bank_code (lookup bank codes) and transfer_1won (send 1 won for verification).

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 provides usage context with '송금 전 예금주 확인 등에 사용합니다' (used for confirming account holder before remittance) and a required condition: 'bank_code 또는 bank_name 중 하나는 입력해야 합니다' (either bank_code or bank_name must be entered). However, it doesn't explicitly contrast with transfer_1won, which might serve a similar verification purpose, so it lacks explicit exclusion.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

bank_code은행코드 조회A
Read-only
Inspect

List Korean bank codes and names. 대한민국 은행 코드·은행명 전체 목록을 반환합니다. transfer_1won, account_realname Tool의 bank_code 입력값을 찾을 때 사용합니다. 무료입니다. [무료]

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true, making the read-only nature clear. The description adds useful context beyond annotations: it returns the full list of bank codes and names and mentions it is free. For a simple read-only operation, this is sufficient behavioral disclosure.

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 brief and front-loaded with the core purpose. However, the Korean sentence repeats the English content, and '무료' appears twice, adding minor redundancy. Still, it is concise overall.

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 simple read-only list tool with no parameters and no output schema, the description fully covers what the tool returns and when to use it. The annotations (readOnlyHint, openWorldHint) provide safety context, so no further details are necessary.

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 tool has zero parameters, and the description confirms it returns the entire list without any filters. Per the rubric, a zero-parameter tool receives a baseline score of 4, and the description aligns with the schema (empty object).

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 lists Korean bank codes and names, using a specific verb ('List') and resource. It also distinguishes itself from sibling tools by explicitly noting that it provides bank_code input values for transfer_1won and account_realname.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool: 'transfer_1won, account_realname Tool의 bank_code 입력값을 찾을 때 사용합니다.' This gives clear usage context and a concrete use case, with no competing alternatives for this purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

transfer_1won1원 인증AInspect

Send a 1 KRW verification deposit to a Korean bank account and return the 4-character verification code printed on the transaction. 대한민국 은행 계좌로 1원을 입금해 적요에 표시되는 인증코드를 반환합니다. 계좌 실소유 확인(1원 인증) 절차에 사용합니다. bank_code 또는 bank_name 중 하나는 입력해야 합니다. [호출당 60포인트]

ParametersJSON Schema
NameRequiredDescriptionDefault
bank_codeNo은행 코드 (bank_code Tool로 조회 가능, 예: 004)
bank_nameNo은행명 (예: 국민). bank_code 대신 입력 가능
account_numYes계좌번호 (숫자만, 하이픈 제외)
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate a non-read-only, non-idempotent operation. The description adds valuable context: the tool performs a real money transfer, costs 60 points per call, and returns a verification code. This goes beyond the structured annotations without contradicting them.

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, front-loaded with the primary action, and includes essential details (return value, use case, input requirement, cost) with no fluff. The bilingual repetition is acceptable for the target audience and does not detract from clarity.

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 simple 3-parameter tool with no output schema, the description covers the outcome (returns code), usage context, input constraints, and cost. It is sufficiently complete for an agent to select and invoke the tool correctly.

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 description coverage is 100%, so parameter meanings are already documented. The description adds an important cross-parameter constraint: bank_code or bank_name must be provided, which the schema alone does not enforce. This extra guidance justifies a score above the baseline.

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 specific action: sending a 1 KRW verification deposit and returning the 4-character code from the transaction. It also identifies the use case (account ownership verification) and is distinguishable from sibling tools like account_realname and bank_code.

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 says this is for account real-owner verification (1원 인증) and requires bank_code or bank_name. However, it does not explicitly mention when not to use it or compare with sibling alternatives like account_realname.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Korean crypto market data API for AI agents. Real-time Kimchi Premium (Upbit vs Binance), Korean exchange prices, USD/KRW FX rate. First verified Korean market data MCP server. Pay-per-use via x402 on Base.
    17
    1
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Provides KOSPI/KOSDAQ stock data including ticker lookup, OHLCV, market capitalization, fundamentals, and trading volume by investor type.
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    Interact with Upbit cryptocurrency exchange services to retrieve market data, manage accounts, and execute trades. Simplify your trading experience with tools for order management, deposits, withdrawals, and technical analysis.
    10
    17
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.