maitabi-mcp-server
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., "@maitabi-mcp-serverSearch for mountain bus tours departing from Tokyo in August"
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.
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.
Related MCP server: transit-mcp
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-serverOption B: Via Docker Image
docker pull phonhay103/maitabi-mcp-server:latest
docker run -i --rm phonhay103/maitabi-mcp-server:latestConfiguration for MCP Clients
Add the following to your MCP client settings (e.g. claude_desktop_config.json, Cursor, Pi):
Via uvx (Recommended):
{
"mcpServers": {
"maitabi": {
"command": "uvx",
"args": ["maitabi-mcp-server"]
}
}
}Via Docker:
{
"mcpServers": {
"maitabi": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"phonhay103/maitabi-mcp-server:latest"
]
}
}
}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-serverAvailable 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 docker-push # Build & push Docker image to Docker Hub
make build # Build Python package wheel & sdist
make publish # Show PyPI release instructionsLocal 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"
]
}
}
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA travel planning MCP server that supports flight search, weather (including cherry blossom forecasts), exchange rate queries, and trip planning. It specializes in Japan travel from Shenzhen/Hong Kong, providing optimal date analysis and multi-day itinerary suggestions.8ISC
- Alicense-qualityBmaintenanceMCP server for Japanese public transit journey planning with interactive map UI, enabling station search, route planning, and departure lookups via natural language.MIT
- AlicenseAqualityCmaintenanceUnofficial MCP server for Yahoo! Transit that provides Japanese train route search (including last/first train), real-time service disruption info, and station timetables as MCP tools.41MIT
- Flicense-qualityBmaintenanceEnables managing travel itineraries with CRUD tools for journeys, stops, and plan items, plus weather lookup, integrated with public MCP servers for time and web search.
Related MCP Connectors
TravelMind: 8 MCP tools for travel (12306 trains, flights, hotels, geocode, planning, policy).
AI marketplace — flights, tours, activities, transport & more via MCP. No auth required.
Read and update your Everway trips and itineraries from any MCP-compatible AI assistant.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/phonhay103/maitabi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server