Maitabi MCP Server (Python)
An MCP (Model Context Protocol) server written in Python using FastMCP for searching and extracting mountain bus tour, alpine trekking, and general tour information from Maitabi (まいたび - 毎日新聞旅行 / 毎日あるぺん号) (www.maitabi.jp, bus.maitabi.jp, & api.bus.maitabi.jp).
Docker Hub Repository: phonhay103/maitabi-mcp-server
Tools Provided
Mountain Bus Tours (毎日あるぺん号 - bus.maitabi.jp)
list_filters: Fetch available filter options, departure areas, tour styles, mountain lodges, and tour counts for mountain bus tours.list_district_groups: Fetch area/district groups and tour counts for mountain bus tours.search_tours: Search mountain bus tours with full filter support (departure, month, day, area, style, return date, bus seat, lodges, keyword, course code).get_tour_detail: Fetch complete bus tour details, schedules, comments, and pricing bycourse_no.
General Travel & Trekking Tours (毎日新聞旅行 - www.maitabi.jp)
search_general_tours: Search general Mainichi Travel tours across categories (travel_type: 1=Domestic Mountain Climbing/Trekking, 2=Domestic Travel/Hiking, 3=Mountain Bus, 4=Overseas Mountain Climbing/Trekking, 5=Overseas Travel) with keyword, date, and pagination filters.get_general_tour_detail: Fetch complete tour details, itinerary, meal condition, guide info, points of interest, and booking links for general tours bycourseNo.get_tour_calendar: Fetch monthly departure schedule calendar and tour matrix onwww.maitabi.jpfor a given year and month.
1. MCP Server Usage
Running the Server
Option A: Zero-setup via uvx
# From PyPI (once published)
uvx maitabi-mcp-server
# Directly from Git repository
uvx --from git+https://github.com/phonhay103/maitabi-mcp-server.git maitabi-mcp-server
Option B: Via Docker Image
docker pull phonhay103/maitabi-mcp-server:latest
docker run -i --rm phonhay103/maitabi-mcp-server:latest
Configuration for MCP Clients
Add the following to your MCP client settings depending on your client platform:
1. For Claude Desktop / Cursor / Pi (claude_desktop_config.json)
Uses the "mcpServers" top-level key format:
Via uvx (Recommended):
{
"mcpServers": {
"maitabi-pypi": {
"command": "uvx",
"args": ["maitabi-mcp-server"]
}
}
}
Via Docker:
{
"mcpServers": {
"maitabi": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"phonhay103/maitabi-mcp-server:latest"
]
}
}
}
2. For VSCode / Cursor Extensions (e.g. Cline, Roo Code, etc.)
Uses the "servers" top-level key and requires the "type": "stdio" field (typically in clines_mcp_settings.json or mcp_settings.json):
{
"servers": {
"maitabi": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"phonhay103/maitabi-mcp-server:latest"
],
"type": "stdio"
},
"maitabi-pypi": {
"type": "stdio",
"command": "uvx",
"args": [
"maitabi-mcp-server"
]
}
},
"inputs": []
}
Agent Skills (vercel-labs/skills)
Install and use Agent Skills from this repository via npx skills:
# Install to current project
npx skills add phonhay103/maitabi-mcp-server
# Install globally
npx skills add phonhay103/maitabi-mcp-server -g
# List skills / Use without installing
npx skills add phonhay103/maitabi-mcp-server --list
npx skills use phonhay103/maitabi-mcp-server
Available Skills:
maitabi-bus-extractor(skills/maitabi-bus-extractor/SKILL.md): Search and extract Maitabi mountain bus (bus.maitabi.jp) and general trekking tours (www.maitabi.jp).
2. Development
Makefile Commands
make help # Show available Makefile targets
make install # Install dependencies using uv
make dev # Run the MCP server locally over stdio
make dev-http # Run the MCP server locally over Streamable HTTP (Port 8000)
make test # Run test suite
make docker-build # Build 2-stage Docker image (Python 3.14)
make build # Build Python package wheel & sdist
Local Development Client Configuration
To test a local checkout with an MCP client:
{
"mcpServers": {
"maitabi": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/maitabi-mcp-server",
"maitabi-mcp-server"
]
}
}
}
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file maitabi_mcp_server-0.1.9.tar.gz.
File metadata
- Download URL: maitabi_mcp_server-0.1.9.tar.gz
- Upload date:
- Size: 88.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f64ec93345aed84ce7cd8ead27b91002e89d929a7a84b286e8a7c2fac8db251
|
|
| MD5 |
d41a3c9c4cfe60b56ba6bc925f0f4077
|
|
| BLAKE2b-256 |
47a2c34e7174a8843419f6fb438049c5fc56c5a48f69ad5232faabed81ace063
|
Provenance
The following attestation bundles were made for maitabi_mcp_server-0.1.9.tar.gz:
Publisher:
pypi-publish.yml on phonhay103/maitabi-mcp-server
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
maitabi_mcp_server-0.1.9.tar.gz -
Subject digest:
2f64ec93345aed84ce7cd8ead27b91002e89d929a7a84b286e8a7c2fac8db251 - Sigstore transparency entry: 2439039845
- Sigstore integration time:
-
Permalink:
phonhay103/maitabi-mcp-server@e980d0f041f9c1ef91af516309842863c29e8997 -
Branch / Tag:
refs/tags/v0.1.9 - Owner: https://github.com/phonhay103
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@e980d0f041f9c1ef91af516309842863c29e8997 -
Trigger Event:
push
-
Statement type:
File details
Details for the file maitabi_mcp_server-0.1.9-py3-none-any.whl.
File metadata
- Download URL: maitabi_mcp_server-0.1.9-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bbd49e0417a0b1777bde1b54862caf212f2e9871159c4a33885d6f5dd9f221e
|
|
| MD5 |
28be9b6bb6bb6e115ad1dae082b1d0af
|
|
| BLAKE2b-256 |
697a85728b1d69fc85e9dbbbc5e5c20edbe02d46124455d613b00fedb2c6be3a
|
Provenance
The following attestation bundles were made for maitabi_mcp_server-0.1.9-py3-none-any.whl:
Publisher:
pypi-publish.yml on phonhay103/maitabi-mcp-server
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
maitabi_mcp_server-0.1.9-py3-none-any.whl -
Subject digest:
8bbd49e0417a0b1777bde1b54862caf212f2e9871159c4a33885d6f5dd9f221e - Sigstore transparency entry: 2439039865
- Sigstore integration time:
-
Permalink:
phonhay103/maitabi-mcp-server@e980d0f041f9c1ef91af516309842863c29e8997 -
Branch / Tag:
refs/tags/v0.1.9 - Owner: https://github.com/phonhay103
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@e980d0f041f9c1ef91af516309842863c29e8997 -
Trigger Event:
push
-
Statement type: