houjin-bangou-api-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@houjin-bangou-api-mcpsearch for company named 'ソニー'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
houjin-bangou-api-mcp
MCP server for the Japan National Tax Agency Corporate Number API.
This project wraps the official Corporate Number Publication Site Web-API and exposes it as MCP tools for local AI clients.
日本語
houjin-bangou-api-mcp は、国税庁の法人番号公表サイト Web-API を MCP から使いやすくするための
軽量サーバーです。
できること:
法人番号で法人情報を取得する
法人名で検索する
更新差分を期間指定で取得する
XML / UTF-8 CSV / Shift-JIS CSV を扱う
MCP クライアントからそのまま使える形で返す
最短の使い方:
npm installHOUJIN_BANGOU_API_APPLICATION_IDを設定するnpm run buildMCP host から
dist/server.jsを起動するnpm run verify:liveでまとめて確認する
詳細なセットアップ、入力制約、レスポンス形式、検証方法はこの README の後半に英語でまとめています。
Related MCP server: infobel-api-mcp
Why this exists
The National Tax Agency already provides an official API, but using it from LLM tools still requires a thin integration layer. This repository aims to be that layer:
small and auditable
easy to self-host
close to the official API
practical for Japanese business research workflows
Features
Get a corporation by 13-digit corporate number
Get up to 10 corporations in one request
Include historical records for corporation number lookups
Search corporations by name
Filter name searches by mode, target, address, kind, change status, close status, assignment date, and page
Fetch updates within a date range
Filter update searches by address, kind, and page
Support the official response formats: CSV (Shift-JIS), CSV (Unicode), and XML
Return normalized JSON-style output from the official XML API
Coverage
This MCP server targets the latest supported Ver.4.0 Corporate Number API and exposes the
documented request conditions for its three core endpoints:
/num/name/diff
Requirements
Node.js 18 or later
A National Tax Agency Web-API application ID
Official documentation:
Quick Start
This is the shortest path from clone to a successful MCP call.
1. Install dependencies
npm install2. Set your application ID
Use an environment variable and never commit the real value.
macOS or Linux:
export HOUJIN_BANGOU_API_APPLICATION_ID=YOUR_APPLICATION_IDWindows PowerShell:
$env:HOUJIN_BANGOU_API_APPLICATION_ID = "YOUR_APPLICATION_ID"For local development, copy .env.example and load it with your preferred workflow.
3. Build the server
npm run build4. Point your MCP host at the built server
All MCP clients need the same launch details:
command:
nodeargs: the absolute path to
dist/server.jsenv:
HOUJIN_BANGOU_API_APPLICATION_ID
If your client has a UI for adding a local stdio MCP server, use those values directly.
JSON-based hosts: Claude Desktop, Claude Code .mcp.json, and compatible clients
Use this when your client reads an mcpServers JSON object:
{
"mcpServers": {
"houjin-bangou-api": {
"command": "node",
"args": [
"/absolute/path/to/houjin-bangou-api-mcp/dist/server.js"
],
"env": {
"HOUJIN_BANGOU_API_APPLICATION_ID": "YOUR_APPLICATION_ID"
}
}
}
}The same entry works well in a project-local .mcp.json. If you already use Claude Desktop, you
can also reuse the same mcpServers entry there and import it into Claude Code later.
Codex CLI
Add the server once:
codex mcp add houjin-bangou-api --env HOUJIN_BANGOU_API_APPLICATION_ID=YOUR_APPLICATION_ID -- node /absolute/path/to/houjin-bangou-api-mcp/dist/server.jsEquivalent ~/.codex/config.toml entry:
[mcp_servers.houjin-bangou-api]
command = "node"
args = ["/absolute/path/to/houjin-bangou-api-mcp/dist/server.js"]
env = { HOUJIN_BANGOU_API_APPLICATION_ID = "YOUR_APPLICATION_ID" }Continue
Continue uses YAML-based MCP configuration. Add the same server under ~/.continue/config.yaml
or in a dedicated file inside .continue/mcpServers/:
mcpServers:
houjin-bangou-api:
command: node
args:
- /absolute/path/to/houjin-bangou-api-mcp/dist/server.js
env:
HOUJIN_BANGOU_API_APPLICATION_ID: YOUR_APPLICATION_IDWindows path example
{
"mcpServers": {
"houjin-bangou-api": {
"command": "node",
"args": [
"C:\\Users\\YOUR_USERNAME\\path\\to\\houjin-bangou-api-mcp\\dist\\server.js"
],
"env": {
"HOUJIN_BANGOU_API_APPLICATION_ID": "YOUR_APPLICATION_ID"
}
}
}
}Tips:
Always use an absolute path to
dist/server.jsKeep the application ID in the client config
envblock or--envflagRun
npm run buildagain after pulling new commitsRestart or reload the MCP client after changing the configuration
5. Make the first successful call
Start with the smallest happy path:
Tool:
get_corporation_by_numberArguments:
{
"corporateNumber": "7000012050002"
}Illustrative result shape when responseType is omitted:
{
"metadata": {
"lastUpdateDate": "YYYY-MM-DD",
"count": 1,
"divideNumber": 1,
"divideSize": 1
},
"corporations": [
{
"corporateNumber": "7000012050002",
"name": "国税庁",
"latest": true
}
]
}Once that works, try:
search_corporations_by_namewith{ "name": "任天堂株式会社" }get_corporation_updateswith a recent date window such as{ "from": "YYYY-MM-DD", "to": "YYYY-MM-DD" }get_corporation_by_numberwithresponseType: "02"orresponseType: "01"
6. Run the recommended end-to-end live check
After the first call works, use one command for the full live verification path:
npm run verify:liveExpected result:
the server builds once
MCP tool registration succeeds
the real-company checks pass
advanced filters pass
all response types pass
If HOUJIN_BANGOU_API_APPLICATION_ID is missing, this command fails immediately with a clear
message instead of running partial checks.
Getting an Application ID
You need a National Tax Agency Web-API application ID before the MCP server can call the live API.
As of March 12, 2026, the official flow is:
Open the official application ID registration page on the invoice site.
Submit the registration form and receive an application ID.
If you will use that ID with the Corporate Number API, follow the current instructions on the Corporate Number API portal, which point to the invoice site flow and email confirmation.
Official pages:
At the time of writing, the Corporate Number API portal instructs users who obtained an ID from the
invoice site to email invoice-webapi@nta.go.jp with their name, email address, and a note that
they want to use the Corporate Number API. Always check the official pages above for the latest
procedure before sharing credentials or support instructions.
Run
Development:
npm run devBuild:
npm run buildProduction entrypoint:
npm startnpm start launches a stdio MCP server and waits for a client connection. Seeing no prompt after
startup is normal.
Package Imports
The packaged CLI still lives at dist/server.js, but importing the package root is now safe and
side-effect free.
Root import:
import { HoujinBangouApiClient, formatApiError, parseCorporationListXml } from "houjin-bangou-api-mcp";Subpath imports:
import { getApplicationIdFromEnv } from "houjin-bangou-api-mcp/nta-api";
import { parseCorporationListXml } from "houjin-bangou-api-mcp/xml";This keeps the CLI entrypoint focused on MCP server startup while allowing programmatic reuse of the request builder and XML parser.
MCP Tools
get_corporation_by_number
Inputs:
corporateNumber: 13-digit corporate numbercorporateNumbers: optional array of up to 10 corporate numbershistory: optional boolean to include historical recordsresponseType: optional response type,12XML,02Unicode CSV,01Shift-JIS CSV
search_corporations_by_name
Inputs:
name: corporation or organization nameresponseType: optional response type,12XML,02Unicode CSV,01Shift-JIS CSVmode: optional search mode,1prefix or2partial matchtarget: optional target,1name,2furigana,3bothaddress: optional 2-digit prefecture code or 5-digit city codekinds: optional array of corporation kind filters:01,02,03,04change: optional boolean to include changed recordsclose: optional boolean to include closed corporationsassignmentFrom: optional assignment date lower bound inYYYY-MM-DDassignmentTo: optional assignment date upper bound inYYYY-MM-DDdivide: optional page number for paginated API results
get_corporation_updates
Inputs:
from: start date inYYYY-MM-DDto: end date inYYYY-MM-DDresponseType: optional response type,12XML,02Unicode CSV,01Shift-JIS CSVaddress: optional 2-digit prefecture code or 5-digit city codekinds: optional array of corporation kind filters:01,02,03,04divide: optional page number for paginated API results
Input Rules and API Limits
These rules are enforced by the MCP server before the request reaches the official API.
corporateNumbermust be a 13-digit stringcorporateNumberscan contain 1 to 10 valuescorporateNumberandcorporateNumbersare mutually exclusiveaddressmust be either a 2-digit prefecture code or a 5-digit city codeassignmentFromandassignmentTomust be real dates on or after2015-10-05assignmentFrommust be on or beforeassignmentTofromandtoforget_corporation_updatesmust be real dates on or after2015-12-01fromandtoforget_corporation_updatesmust stay within 50 days inclusivedividemust be a positive integer
Response Types
The official API type switch is exposed through responseType.
12: XML from the source API, returned by this MCP as structured JSON-style data02: Unicode CSV from the source API, returned by this MCP as raw text01: Shift-JIS CSV from the source API, returned by this MCP as raw text
Structured example: responseType: "12"
This example shows the shape of a successful response, not a fixed live snapshot.
{
"metadata": {
"lastUpdateDate": "YYYY-MM-DD",
"count": 1,
"divideNumber": 1,
"divideSize": 1
},
"corporations": [
{
"corporateNumber": "7000012050002",
"name": "国税庁",
"prefectureName": "東京都",
"cityName": "千代田区",
"latest": true
}
]
}Raw CSV example: responseType: "02" or responseType: "01"
{
"responseType": "02",
"contentType": "text/csv;charset=UTF-8",
"raw": "YYYY-MM-DD,1,1,1\n1,7000012050002,01,1,2018-04-02,2015-10-05,\"国税庁\",..."
}Use 12 when you want fields you can safely consume in tools or downstream code. Use 01 or 02
when you need the source CSV payload.
Structured Response Fields
When responseType is omitted or set to 12, the MCP server returns:
metadata: source pagination and result metadata from the official APIcorporations: normalized corporation records from the XML payload
Common metadata fields:
lastUpdateDate: source update date reported by the APIcount: total record count for the requestdivideNumber: current page number reported by the source APIdivideSize: total number of pages reported by the source API
Common corporations[] fields:
corporateNumber: 13-digit corporate numbername: Japanese corporation namefurigana: furigana when the API provides itprefectureName,cityName,streetNumber: Japanese address fragmentsenName,enPrefectureName,enCityName,enAddressOutside: English fields when presentkind: official corporation kind codeprocess: official source process codecorrect: normalized boolean flag from the source0or1latest: normalized boolean flag from the source0or1hidden: normalized boolean flag from the source hidden markercloseDate,closeCause: closure metadata for dissolved or closed corporationssuccessorCorporateNumber: successor corporation number when presentchangeCause: official reason code for a changeassignmentDate,updateDate,changeDate: important source dates
The MCP server keeps official field names close to the source API so users can map the values back
to the National Tax Agency documentation. For the normative meaning of codes such as kind,
process, closeCause, and changeCause, use the official Ver.4.0 specification:
Pagination
The official API paginates some responses. This MCP server exposes the same page metadata through
metadata.count, metadata.divideNumber, and metadata.divideSize.
Typical workflow:
Call
search_corporations_by_nameorget_corporation_updateswithoutdividefirst.Read
metadata.divideSize.If
divideSizeis greater than1, call the same tool again withdivide: 2,divide: 3, and so on until you reach the last page.
Illustrative example:
{
"name": "株式会社",
"divide": 2
}The MCP server does not auto-follow all pages yet. That is intentional so callers can control API usage and stop early when they already have enough records.
Verification Checklist
Use these checks in order when setting up or debugging.
When the upstream API returns a code-prefixed validation failure, this MCP server preserves the
official message and may append a short Hint: sentence to point you toward the most likely input
problem.
Basic test suite
npm testExpected result:
all tests pass
Build
npm run buildExpected result:
dist/server.jsis generated without TypeScript errorsdist/index.jsis generated for package imports
MCP connection check
npm run smoke:mcpExpected result:
the three tools are listed
if
HOUJIN_BANGOU_API_APPLICATION_IDis set, live API calls also succeed
One-command live verification
npm run verify:liveExpected result:
build runs once at the start
the script stops on the first failing live check
successful output ends with
verify:live completed successfully
Real-company check
npm run check:companiesExpected result:
National Tax Agency, Nintendo, Toyota Motor, and Sony Group are all found as expected
Advanced filter check
npm run check:advanced-filtersExpected result:
multiple corporate numbers resolve in one request
filtered name search returns the expected narrow result set
filtered diff search returns live update records
Response type check
npm run check:response-typesExpected result:
12returns structured data02returns Unicode CSV text01returns Shift-JIS CSV text decoded into readable output
Packaged install check
npm run smoke:packageExpected result:
installed package entrypoints expose the three tools
package root imports do not start the server or require environment variables
missing application ID fails clearly
Windows installs work even when the repository path contains non-ASCII characters
Package dry-run
npm run check:packExpected result:
npm pack --dry-runsucceeds and includes the intended files
Installation Paths
Use from this repository today
Clone the repository, run npm install, build it, and point your MCP host at
/absolute/path/to/houjin-bangou-api-mcp/dist/server.js.
Use from npm later
This repository is ready for package-oriented verification, but npm publishing is still a future
distribution path. Once published, the README can add an npx-based install path alongside the
repository-based setup above.
Common Issues
Missing application ID
Symptom:
the server exits immediately with
Missing HOUJIN_BANGOU_API_APPLICATION_ID
Fix:
set
HOUJIN_BANGOU_API_APPLICATION_IDin the environment passed to the MCP host
Diff range is rejected
Symptom:
from must be on or before tofrom and to must be within 50 daysfrom must be on or after 2015-12-01
Fix:
keep the date window within 50 days inclusive
use dates on or after
2015-12-01
Name assignment dates are rejected
Symptom:
assignmentFrom must be on or after 2015-10-05assignmentTo must be on or after 2015-10-05
Fix:
use assignment date filters on or after
2015-10-05
Address code is rejected
Symptom:
address must be a 2-digit prefecture code or 5-digit city code
Fix:
pass values such as
13for Tokyo prefecture or13101for Chiyoda City
CSV was expected but structured data came back
Symptom:
the result contains
metadataandcorporations
Fix:
set
responseTypeto02or01leave
responseTypeunset or use12when you want structured output
Upstream request timed out
Symptom:
Corporate Number API request timed out after 15000 ms
Fix:
retry the request after confirming network connectivity
reduce the request scope when possible, for example by narrowing date ranges or filters
Contributing
Public contributions are welcome. Please open a pull request instead of pushing directly to
main.
Contribution guide: CONTRIBUTING.md
Code of conduct: CODE_OF_CONDUCT.md
Roadmap: ROADMAP.md
Pull requests are expected to pass CI:
npm testnpm run build
Current GitHub Actions coverage:
Ubuntu and Windows test/build on Node.js 18, 20, and 22
packaged install smoke tests on Ubuntu
packaged install smoke tests on Windows from a non-ASCII workspace path
Security
Keep your application ID out of Git history, screenshots, and issue reports.
Use environment variables only.
Treat all logs as potentially public before sharing them.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yamayued/houjin-bangou-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server