HojinCheck — Japanese corporate verification API (hojin = 法人/corporate entity)
Server Details
Verify Japanese companies, invoice-issuer registrations and addresses against government open data.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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.1/5 across 6 of 6 tools scored.
Most tools are clearly distinct (resolve_company vs verify_company vs verify_invoice_number). get_company_profile and verify_company both take corporate numbers and return company info, which could cause confusion, but their descriptions clarify different data sources and purposes.
Five of six tools follow a consistent verb_noun snake_case pattern (get_company_profile, verify_company, resolve_company, verify_invoice_number, normalize_address). jp_calendar deviates as a noun-only name, but the overall convention is readable and predictable.
Six tools is well within the 3-15 range for a focused corporate verification API. Each tool addresses a specific aspect (profile lookup, verification, name resolution, invoice verification, address normalization, business day calculations) without redundancy or bloat.
The set covers core corporate verification workflows: name-to-number resolution, number verification, detailed profile retrieval, invoice registration status, and address normalization. Minor gaps exist (e.g., no batch lookup or search by partially known number), but these are not critical for the stated purpose.
Available Tools
6 toolsget_company_profile法人プロファイル取得(gBizINFO)AInspect
法人番号(13桁・チェックディジット検証つき)からgBizINFOの法人プロファイル(所在地・代表者・資本金・従業員数等)を、項目別の出典・最終取得日メタとあわせて返します。データ源: Gビズインフォ REST API v2(経済産業省)。
| Name | Required | Description | Default |
|---|---|---|---|
| corporate_number | Yes | 法人番号13桁(全角・ハイフン・空白は吸収。チェックディジット検証あり) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It adds value by disclosing check-digit validation and the inclusion of per-item source and retrieval date metadata. However, it does not mention error handling, rate limits, or explicitly confirm read-only status, leaving some behavioral aspects undisclosed.
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 two compact sentences. The first sentence delivers the core function and outputs, and the second provides the data source. Every word is informative, with no filler or unnecessary detail.
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, read-only lookup with no output schema, the description covers input requirements, data fields returned, metadata inclusion, and provenance. It lacks explicit failure scenarios, but given the simplicity and schema richness, there is enough context for an agent to use it 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?
The input schema already fully describes the parameter, including the 13-digit format, handling of full-width/hyphens/spaces, and check-digit validation (100% coverage). The tool description repeats these details without adding new semantic meaning, so a 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 returns a gBizINFO corporate profile (location, representative, capital, employees) based on a 13-digit corporate number with check-digit validation. It uses a specific verb ('返します' - returns) and resource ('法人プロファイル'), which distinguishes it from sibling tools like verify_company or resolve_company.
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 implies the tool is for retrieving corporate profile data when a corporate number is available, but it does not explicitly state when to use it over alternatives or provide exclusions. Sibling tools such as verify_company and resolve_company are not differentiated, so the agent may not know which to pick.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
jp_calendar日本の祝日・営業日計算AInspect
日本の祝日判定と営業日計算(内閣府「国民の祝日」CSV準拠)。営業日=土日・祝日以外。year_end_as_holiday=trueで12/29〜1/3も非営業日扱い。
| Name | Required | Description | Default |
|---|---|---|---|
| op | Yes | 操作種別 | |
| to | No | 期間終了日(list_holidaysで必須) | |
| date | No | 基準日 YYYY-MM-DD(list_holidays以外で必須) | |
| days | No | 加算する営業日数(add_business_daysで必須。負数=遡り、0=基準日をそのまま返す) | |
| from | No | 期間開始日(list_holidaysで必須) | |
| year_end_as_holiday | No | 12/29〜1/3を非営業日として扱う(官公庁・銀行休業の慣行。既定false=祝日法と土日のみ) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and discloses key behavior: it follows the Cabinet Office CSV and treats weekends/holidays as non-business days. The year_end_as_holiday parameter behavior is also explained. It does not mention return types or edge cases, but for a calculation tool the core logic is transparent.
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 extremely concise, comprising two short sentences that front-load the purpose and immediately state the core rule and the special flag. Every clause contributes useful information without unnecessary verbosity.
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 the tool's moderate complexity (6 parameters, 5 ops, no output schema), the description covers the essential behavioral rule and the optional flag. It lacks explicit return type descriptions, but the operation names (is_business_day, next_business_day, etc.) are self-explanatory, so completeness is adequate.
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%, so the baseline is 3. The description repeats the year_end_as_holiday semantics already present in the schema and adds the general business day rule, but does not significantly enrich parameter meanings beyond the existing schema descriptions.
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's function: '日本の祝日判定と営業日計算' (Japanese holiday determination and business day calculation), and defines the business day rule ('営業日=土日・祝日以外'). It uses specific verbs and a clear resource, and is distinctly different from sibling tools which focus on company/invoice 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 gives clear context on when to use the tool by defining what counts as a business day and the optional year_end_as_holiday behavior. It does not explicitly exclude alternatives, but no sibling tool serves a similar purpose, so the usage is effectively clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
normalize_address日本住所の正規化・要素分解・郵便番号照合AInspect
日本の住所を正規化し、都道府県/市区町村/町字(大字・町名+丁目)に分解して町字ID(アドレス・ベース・レジストリ)を解決し、郵便番号と照合します(不一致は不一致として明示)。【v1の粒度と限界】分解は町字(大字・丁目)まで。街区符号・住居番号・地番・小字・京都の通り名は解析対象外で、未解析部分は残余文字列としてそのまま返します(推測補完なし)。データ源: アドレス・ベース・レジストリ町字マスター(デジタル庁)+日本郵便郵便番号データ(ローカルマスター駆動・政府API停止の影響なし)。
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | 日本の住所文字列(郵便番号含み可。全半角・漢数字/算用数字・旧字体の表記ゆれ可) | |
| postal_code | No | 郵便番号を別引数で渡す場合に指定(住所文字列内の記載より優先して照合) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral disclosure burden. It is exceptionally transparent about limitations (parsing only up to town level, not street numbers or Kyoto street names), states that unmatched portions are returned as residual strings, and notes that postal code mismatches are explicitly indicated. It also cites data sources, giving users confidence in its reliability.
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 well-structured and appropriately sized. It opens with the core action, then clearly delineates limitations using a labeled block, and ends with data sources. Every sentence provides valuable information, and the use of headers (【v1の粒度と限界】) makes it easy to scan. No redundancy or filler.
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 covers the main functionality, limitations, and data sources, and gives hints about output behavior (residual string, mismatch flag). However, without an output schema, it lacks a precise specification of the returned fields (e.g., prefecture/city/town names, town ID, postal code status). This is a minor gap given the tool's complexity, but enough to prevent a perfect score.
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 already provides 100% coverage, including descriptions of both parameters (address and optional postal_code). The description adds no new parameter-specific information beyond what the schema offers, so the baseline of 3 is appropriate; it neither enhances nor detracts from semantic clarity.
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's actions: normalize Japanese addresses, decompose into prefecture/municipality/town, resolve town IDs, and match postal codes. It explicitly distinguishes itself from siblings (which handle company/invoice/calendar functions) and specifies the exact scope and limitations, making its purpose unambiguous.
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 implies the tool is for Japanese address processing and clearly states what it does NOT do (no block numbers, etc.), which serves as an exclusion for cases needing finer granularity. However, it does not explicitly mention alternatives or provide a direct 'when to use vs. other tools' comparison, though none of the sibling tools are address-related.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolve_company法人名から法人番号を解決AInspect
法人名(表記ゆれ・かな/カナ対応)から法人番号の候補と確度(0〜1+根拠ラベル)を返します。データ源: 国税庁法人番号システムWeb-API。
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | 法人名((株)等の略記・全半角・かな/カナ・旧字体の表記ゆれ可) | |
| limit | No | 返却する候補数の上限(既定10) | |
| address | No | 所在地で絞り込み: 都道府県コード2桁(JIS X 0401)または+市区町村コード3桁の計5桁 | |
| include_closed | No | 閉鎖法人を候補に含める(既定true) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It adds valuable behavioral context by disclosing the data source (National Tax Agency Web-API) and the output structure (candidates with confidence and reason label). This goes beyond the schema, though it does not mention network side effects or error handling.
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?
Two concise sentences: the first states the core function and output, the second gives the data source. It is front-loaded and contains no filler, earning the maximum score.
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 tool has no output schema and no annotations, so the description should compensate. It mentions candidates and confidence but does not detail the return format (e.g., JSON structure, array of objects) or edge cases like empty results or error behavior. It is adequate but incomplete for a fuzzy-matching 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 coverage is 100% with each parameter having a description. The description itself adds no parameter-specific detail beyond the schema—e.g., the mention of name variations duplicates the schema's name description. Baseline 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 resolves corporate numbers from corporate names, returning candidates with confidence scores and reason labels. It specifies the input variations (kana/kanji, orthographic variants) and names the data source, making the purpose distinct from siblings like verify_company.
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 implies usage for fuzzy name-to-number resolution (due to mention of variants and confidence), but it does not explicitly state when to use this tool versus alternatives like verify_company or get_company_profile. There is no when-not/exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_company法人番号の実在検証AInspect
法人番号(13桁・チェックディジット検証つき)から実在・商号・本店所在地・法人種別・閉鎖ステータスを返します。include_history=trueで商号変更等の履歴も返します。データ源: 国税庁法人番号システムWeb-API。
| Name | Required | Description | Default |
|---|---|---|---|
| include_history | No | 商号変更等の履歴を含める(既定false) | |
| corporate_number | Yes | 法人番号13桁(全角・ハイフン・空白は吸収) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. It discloses the check digit validation, data source (National Tax Agency Web-API), and the optional history inclusion, which implies a read-only external lookup. However, it does not specify error handling, authentication requirements, or the exact return 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 exactly two sentences, with the primary purpose front-loaded and the optional behavior and data source in the second sentence. Every word is informative, with no redundancy or filler.
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 tool has a small parameter set and no output schema, yet the description manages to enumerate the returned fields and mention the key option and data source. It lacks error behavior and response format details, which would be useful but not critical for this simple verification 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?
Both parameters are already described in the schema with full coverage, so the baseline is 3. The description adds minor context by mentioning check digit validation for corporate_number and clarifying the effect of include_history, but these largely overlap with the schema descriptions.
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's function: it takes a 13-digit corporate number (with check digit verification) and returns existence, trade name, location, corporate type, and closure status. This specific verb+resource combination distinguishes it from siblings like resolve_company.
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 implies usage for verifying a corporate number's existence but does not explicitly state when to prefer this tool over alternatives like resolve_company or get_company_profile. It lacks exclusions or conditional guidance, so the agent must infer the appropriate context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_invoice_number適格請求書発行事業者登録番号の検証AInspect
適格請求書発行事業者の登録番号(T+13桁)から登録有無・登録年月日・取消/失効を返します。on_dateで基準日時点の有効性判定、include_history=trueで公表履歴も返します。入力は登録番号のみ(氏名等による検索は提供しません)。データ源: 国税庁適格請求書発行事業者公表システムWeb-API。
| Name | Required | Description | Default |
|---|---|---|---|
| on_date | No | 基準日 YYYY-MM-DD(指定時はその日時点で登録が有効だったかを as_of で返す) | |
| include_history | No | 公表履歴(新規登録・変更・取消・失効)を含める(既定false) | |
| registration_number | Yes | 適格請求書発行事業者登録番号(T+13桁。Tなし13桁・全角・ハイフン空白は吸収) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the data source (国税庁適格請求書発行事業者公表システムWeb-API), the return content (registration status, date, cancellation/expiration), and the effect of optional parameters. It does not mention error handling or rate limits, but the core behavior is transparent and the official source adds trust.
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 three sentences long, front-loaded with the core function, and every sentence adds value: what it does, how options work, what is not supported, and the data source. No fluff or redundant restatement.
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 tool with three parameters and no output schema, the description covers the essential aspects: purpose, input constraint, behavior of options, and data source. It does not specify the exact response field names or structure, but it names the kinds of data returned. This is sufficiently complete for an agent to select and invoke the tool effectively.
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 all three parameters are already documented in detail. The description adds a high-level constraint (input must be a registration number only) but does not materially extend the parameter syntax or format beyond what the schema already provides. The baseline of 3 is appropriate since the schema does the heavy lifting.
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 a specific verb and resource: it verifies a qualified invoice issuer registration number and returns registration status, registration date, and cancellation/invalidation. It also distinguishes from siblings by explicitly noting that search by name is not provided, making it clear this tool is for number-based verification only.
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 clear context for when to use this tool—when you have a registration number—and explicitly states an exclusion: search by name is not supported. It does not name alternative sibling tools, but the when-not guidance is strong and the parameter behaviors for on_date and include_history are explained.
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
- AlicenseAqualityBmaintenanceAn MCP server that validates Japanese corporate numbers and invoice registration numbers, and normalizes/matches company names across notation variants.756MIT
- Alicense-qualityCmaintenanceEnables AI agents to query Japanese public data (laws, corporations, statistics) from official government APIs, returning normalized English metadata with source attribution.1MIT
- AlicenseAqualityBmaintenanceMCP server for Japanese public business data, enabling AI agents to validate and look up corporate numbers, search bank/branch codes, and check national holidays. Runs locally with no telemetry; live corporate registry data requires a free NTA app ID.8MIT
- Alicense-qualityCmaintenanceMCP server for the Kaisha API, providing official Japanese company-registry data including corporate numbers and qualified invoice registrations, with pay-per-call via USDC micropayments.18MIT