Metadata-Version: 2.4
Name: yubin_mcp
Version: 0.0.6
Summary: MCP server that retrieves addresses and map links from Japanese postal codes and latitude/longitude coordinates
Home-page: https://github.com/masashimorita/yubin_mcp.git
Author: Masashi Morita
Author-email: masashi.morita.mm@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: posuto
Requires-Dist: geopy
Requires-Dist: mcp[cli]
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# YUBIN MCP

MCP server that retrieves addresses and map links from Japanese postal codes and latitude/longitude coordinates

## Installation

```bash
pip install yubin-mcp
```

## Usage

### Use with Claude Desktop

1. Install the MCP server

```bash
pip install yubin-mcp
```

2. Open the configuration file
```bash
open /path/to/Claude/claude_desktop_config.json
```

3. Add the following configuration to the configuration file

```json
{
  "mcpServers": {
    "yubin-mcp": {
      "command": "python",
      "args": [
        "-m",
        "yubin_mcp.server"
      ],
      "env": {},
      "transport": "stdio"
    }
  }
}
```
