kenall-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., "@kenall-mcplook up address for postal code 100-0001"
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.
Kenall MCP Server
An MCP (Model Context Protocol) server that provides access to the Kenall postal code API for Japanese address lookups.
Features
Look up address information from Japanese postal codes
Search for postal codes by address
Support for both hyphenated and non-hyphenated postal code formats
Related MCP server: e-Stat MCP server
Prerequisites
Node.js 18 or higher
A Kenall API key (get one at https://kenall.jp/)
Installation
npm install -g kenall-mcpOr use directly with npx:
npx kenall-mcpConfiguration
Set your Kenall API key as an environment variable:
export KENALL_API_KEY="your-api-key-here"Building (for development)
npm run buildRunning
Using npx (recommended):
KENALL_API_KEY="your-api-key-here" npx kenall-mcpAfter global installation:
KENALL_API_KEY="your-api-key-here" kenall-mcpDevelopment mode (with auto-reload):
npm run devProduction mode (from source):
npm startMCP Client Configuration
To use this server with an MCP client, add the following to your MCP client configuration:
Using npx (recommended):
{
"mcpServers": {
"kenall": {
"command": "npx",
"args": ["kenall-mcp"],
"env": {
"KENALL_API_KEY": "your-api-key-here"
}
}
}
}Using global installation:
{
"mcpServers": {
"kenall": {
"command": "kenall-mcp",
"env": {
"KENALL_API_KEY": "your-api-key-here"
}
}
}
}Using local installation:
{
"mcpServers": {
"kenall": {
"command": "node",
"args": ["/path/to/kenall-mcp/dist/index.js"],
"env": {
"KENALL_API_KEY": "your-api-key-here"
}
}
}
}Available Tools
lookup_postal_code
Look up address information from a Japanese postal code.
Parameters:
postalCode(string, required): Japanese postal code (e.g., '1000001' or '100-0001')
search_address
Search for postal codes by address.
Parameters:
query(string, required): Address query in Japaneseprefecture(string, optional): Prefecture name to filter resultscity(string, optional): City name to filter results
Example Usage
Looking up a postal code:
{
"tool": "lookup_postal_code",
"arguments": {
"postalCode": "100-0001"
}
}Searching by address:
{
"tool": "search_address",
"arguments": {
"query": "千代田",
"prefecture": "東京都"
}
}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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/knsh14/kenall-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server