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.
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.
Tool Definition Quality
Average 4.5/5 across 3 of 3 tools scored.
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.
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.
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.
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 toolsaccount_realname계좌 예금주 실명 조회ARead-onlyInspect
Look up the account holder name of a Korean bank account. 대한민국 은행 계좌의 예금주명을 조회합니다. 송금 전 예금주 확인 등에 사용합니다. bank_code 또는 bank_name 중 하나는 입력해야 합니다. [호출당 60포인트]
| Name | Required | Description | Default |
|---|---|---|---|
| bank_code | No | 은행 코드 (bank_code Tool로 조회 가능, 예: 004) | |
| bank_name | No | 은행명 (예: 국민). bank_code 대신 입력 가능 | |
| account_num | Yes | 계좌번호 (숫자만, 하이픈 제외) |
Tool Definition Quality
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.
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.
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.
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.
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.
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은행코드 조회ARead-onlyInspect
List Korean bank codes and names. 대한민국 은행 코드·은행명 전체 목록을 반환합니다. transfer_1won, account_realname Tool의 bank_code 입력값을 찾을 때 사용합니다. 무료입니다. [무료]
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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포인트]
| Name | Required | Description | Default |
|---|---|---|---|
| bank_code | No | 은행 코드 (bank_code Tool로 조회 가능, 예: 004) | |
| bank_name | No | 은행명 (예: 국민). bank_code 대신 입력 가능 | |
| account_num | Yes | 계좌번호 (숫자만, 하이픈 제외) |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceKorean 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.171MIT
- Alicense-qualityDmaintenanceProvides KOSPI/KOSDAQ stock data including ticker lookup, OHLCV, market capitalization, fundamentals, and trading volume by investor type.MIT
- Flicense-qualityCmaintenanceVerifiable Korea-specific judgment for AI agents — Go/Conditional/Hold verdicts cross-checked by a human expert council, per-report audit endpoint (committee DIDs + signatures). x402/USDC per call ($1–$5), free preview.
- AlicenseBqualityCmaintenanceInteract 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.1017MIT
Your Connectors
Sign in to create a connector for this server.