kenall-mcp
MCP server that provides access to the Kenall postal code API for Japanese address lookups, enabling lookup by postal code and search by address.
README
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
Prerequisites
- Node.js 18 or higher
- A Kenall API key (get one at https://kenall.jp/)
Installation
npm install -g kenall-mcp
Or use directly with npx:
npx kenall-mcp
Configuration
Set your Kenall API key as an environment variable:
export KENALL_API_KEY="your-api-key-here"
Building (for development)
npm run build
Running
Using npx (recommended):
KENALL_API_KEY="your-api-key-here" npx kenall-mcp
After global installation:
KENALL_API_KEY="your-api-key-here" kenall-mcp
Development mode (with auto-reload):
npm run dev
Production mode (from source):
npm start
MCP 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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.