Japan shipping labels for AI agents: buy Yamato, Sagawa, Japan Post labels and track via Ship&co.
MCPpedia last refreshed this data
This server has been archived and is no longer actively maintained.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"app-wishpool-japan-logistics-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Paste this into your MCP client config (Claude Desktop, Cursor, Windsurf, or any MCP-capable agent):
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / ecommerce
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
An open-source AI agent that brings the power of Gemini directly into your terminal.
Lightweight core CLI surface for Claude Flow — memory + hooks commands only. Designed to load fast on cold npx cache (<5s) so plugin skills don't race the 30s MCP-startup timeout. The full @claude-flow/cli metapackage lazy-loads everything else on top of
MCP Security Weekly
Get CVE alerts and security updates for app.wishpool/japan-logistics-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Paste this into your MCP client config (Claude Desktop, Cursor, Windsurf, or any MCP-capable agent):
{
"mcpServers": {
"japan-logistics": {
"type": "http",
"url": "https://logi-jp.wishpool.app/mcp"
}
}
}
Nothing to install. Credentials, when you need them, travel as HTTP headers on each request and are never stored — see the threat model.
Would you rather not send production credentials to a server you do not control? Deploy this identical code to your own account and point your agent at your own URL:
git clone https://github.com/junter1989k-ai/japan-logistics-mcp && cd japan-logistics-mcp && npx vercel --prod
MIT-licensed. Self-hosting removes us from the picture entirely, at no cost and with no loss of function.
Remote MCP server that lets any AI agent ship parcels in Japan — over Yamato (ヤマト運輸), Sagawa (佐川急便), Japan Post (日本郵便) and Seino (西濃運輸), plus international DHL / UPS / FedEx — through the Ship&co shipping API. Estimate carrier rates, create a shipment and its label in one call, track parcels and void labels. Stateless, bring-your-own Ship&co API token, never stores anything.
Live endpoint: https://logi-jp.wishpool.app/mcp · Registry: app.wishpool/japan-logistics-mcp
{
"mcpServers": {
"japan-logistics": {
"type": "http",
"url": "https://logi-jp.wishpool.app/mcp",
"headers": {
"x-shipandco-token": "your_shipandco_api_token"
}
}
}
}
No shared demo — use your own Ship&co account. Get an API token self-serve in the Ship&co Dashboard (API menu → Create New Token) and send it in the header above. The server is stateless: on every call it forwards the token to api.shipandco.com as the x-access-token header and stores nothing.
create_shipment defaults to test:true, which prints a free, non-billable virtual label end-to-end. Yamato and Sagawa need no extra carrier account for test mode — an agent can validate the whole flow with no carrier contract. Set test:false to buy a real billable label.
| Tool | What it does |
|---|---|
get_rates | Estimate rates before creating a label (read-only, spends nothing). from_address, to_address, weight (grams) and products → available carrier services with amount (JPY), cheapest flagged. /rates quotes carriers registered in your Ship&co account. |
create_shipment | Create a shipment and issue the label in one call. carrier (yamato/sagawa/japanpost/seino/dhl/ups/fedex) + from_address + to_address + weight + products. Returns shipment_id, carrier, tracking_number(s), label_url (PDF). test defaults true (free); test:false buys a real label. |
query_tracking | Track by carrier + tracking_number. Status enum (Ship&co): collected / transit / out_for_delivery / delivered / exception / returned, each with a plain-English hint; non-terminal statuses carry next_steps. Raw current status + history always included. |
void_label | Void/cancel a shipment + label by shipment_id. TEST labels always; real labels only before pickup. |
Owner policy guardrails ride optional headers (x-agentpay-max-amount, x-agentpay-approval-above, x-agentpay-allowed-tools) — set by the human owner in client config; the agent cannot relax them. The declared goods value (JPY) is gated before the label is created: approval-above returns an unsigned draft with no label created.