Oku-Akasaka Sushi Tanji
Omakase courses at a sushi counter in Akasaka, Tokyo, with a pre-filled link to the booking page.
Should I use this
Quality & Safety
Findings (1)
- LOWin list_courses
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"reservations": {
"url": "https://sushi-tanji.com/wp-json/bmp/v1/mcp"
}
}
}Remote endpoints
https://sushi-tanji.com/wp-json/bmp/v1/mcpstreamable-httpWhat it can do
Tool inventory
Tools (4)
🟢list_courses(lang)
The three courses with price per person and what is included. Prices include tax and service charge.
Input Schema
{
"type": "object",
"properties": {
"lang": {
"type": "string",
"enum": [
"ja",
"en",
"zh",
"ko"
],
"description": "ja, en or zh (Simplified Chinese). ko opens the booking page in Korean (texts in English). Default en."
}
}
}🟢recommend_course(budget_per_person_jpy, wants_sake, lang)
Suggest a course from the budget per person and whether the guest wants sake. Returns the suggestion with a reason, plus the other courses.
Input Schema
{
"type": "object",
"properties": {
"budget_per_person_jpy": {
"type": "integer",
"minimum": 0,
"description": "Budget per person in JPY, food (and sake if wanted) included."
},
"wants_sake": {
"type": "boolean",
"description": "True if the guest would like sake with the meal."
},
"lang": {
"type": "string",
"enum": [
"ja",
"en",
"zh",
"ko"
],
"description": "ja, en or zh (Simplified Chinese). ko opens the booking page in Korean (texts in English). Default en."
}
}
}🟢get_booking_link(course, date, people, lang)
Link to the restaurant's TableCheck booking page with the course, date and party size already selected. The guest picks a time there, agrees to the restaurant's notice, enters their name and contact, and confirms. This tool never books, never takes payment and does not know which times are free. Refuses dates the restaurant has told us it is closed.
Input Schema
{
"type": "object",
"properties": {
"course": {
"type": "string",
"enum": [
"omakase",
"premium",
"sake_pairing"
]
},
"date": {
"type": "string",
"description": "YYYY-MM-DD (Japan time)."
},
"people": {
"type": "integer",
"minimum": 1,
"maximum": 9
},
"lang": {
"type": "string",
"enum": [
"ja",
"en",
"zh",
"ko"
],
"description": "ja, en or zh (Simplified Chinese). ko opens the booking page in Korean (texts in English). Default en."
}
},
"required": [
"course",
"date",
"people"
]
}🟢get_restaurant_info(topic, lang)
The restaurant's own answer (from its FAQ) about one topic: price, reservation, duration, seating, tea_room, allergies, english, payment or location. Opening hours, lunch and days off are not answered here: point the guest to the booking page.
Input Schema
{
"type": "object",
"properties": {
"topic": {
"type": "string",
"enum": [
"price",
"reservation",
"duration",
"seating",
"tea_room",
"allergies",
"english",
"payment",
"location"
]
},
"lang": {
"type": "string",
"enum": [
"ja",
"en",
"zh",
"ko"
],
"description": "ja, en or zh (Simplified Chinese). ko opens the booking page in Korean (texts in English). Default en."
}
},
"required": [
"topic"
]
}Community
Evidence