Connects Claude and other MCP clients directly to SUZURI, GMO Pepabo's print-on-demand merchandise platform. You can upload images, generate text designs, and place them on 450+ items to create products. The server exposes tools for material management, product creation with placement previews, product search and discovery, favorites, and collections. Uses OAuth 2.1 over streamable HTTP, so no local setup beyond adding the endpoint. Reach for this when you want to prototype merch designs, search SUZURI's catalog, or automate product creation through natural language. Server access is free, standard SUZURI fees apply when you actually produce goods.
日本語版 README はこちら / Japanese README
The official remote Model Context Protocol (MCP) server for SUZURI — a print-on-demand merchandise platform operated by GMO Pepabo, Inc.
Upload images or generate text designs, place them on 450+ items to create original goods, and search and explore products — all through natural language conversations with AI assistants.
https://mcp.suzuri.jp/mcp
Transport: Streamable HTTP. Authentication: OAuth 2.1 (handled automatically by supported clients).
Pricing: MCP server access is free. Standard SUZURI fees apply when producing or purchasing goods.
Choose your client below.
claude mcp add --transport http suzuri https://mcp.suzuri.jp/mcp
Then run /mcp inside Claude Code and select Authenticate to complete the OAuth flow.
Settings → Connectors → Add custom connector → enter:
https://mcp.suzuri.jp/mcp
OAuth is handled automatically by Claude.
Add to .cursor/mcp.json:
{
"mcpServers": {
"suzuri": {
"url": "https://mcp.suzuri.jp/mcp"
}
}
}
codex mcp add suzuri --url https://mcp.suzuri.jp/mcp
See the Gemini CLI MCP server documentation for adding remote MCP servers.
For clients that only support stdio transport, use mcp-remote:
{
"mcpServers": {
"suzuri": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.suzuri.jp/mcp"]
}
}
}