← aidish-app.onrender.com
INDIVIDUAL MCP TOOL
find_stores
AIから受取注文できる店を探す(店名・料理の種類・エリアで絞る)。tenant_id が分からない時は最初にこれを呼び、利用者に店を選んでもらう。
LIVE ENDPOINT
https://aidish-app.onrender.com/mcp
Connect to this endpoint to inspect the live schema for find_stores and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.aidish-agent-gateway]
url = "https://aidish-app.onrender.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"aidish-agent-gateway": {
"type": "http",
"url": "https://aidish-app.onrender.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: aidish-agent-gateway
Remote MCP URL: https://aidish-app.onrender.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"aidish-agent-gateway": {
"url": "https://aidish-app.onrender.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"aidish-agent-gateway": {
"type": "http",
"url": "https://aidish-app.onrender.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "aidish-agent-gateway",
"transport": "streamable-http",
"url": "https://aidish-app.onrender.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_menu— 店のお品書き(公開中の商品・税込価格・説明・オプション)を返す。注文の前に必ずこれで menu_id を確かめる。check_pickup_availability— 今この店が受取注文(テイクアウト)を受け付けているか、最短の受取時刻、店の連絡先を返す。place_pickup_order— 受取注文(テイクアウト)を入れる。支払いは受取時に店頭(現金・カード・QR)。氏名と電話番号は必須で、店が受取時の本人確認と連絡に使う。注文前に必ず利用者に内容と受取時刻を確認すること。