Love Live! Illustration Prompt Generator
Click on "Deploy 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., "@Love Live! Illustration Prompt GeneratorGenerate a prompt with 2 characters from Aqours and Nijigasaki"
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.
ラブライブ! イラストお題メーカー MCP Server
概要
ラブライブ!シリーズのキャラクターが登場するイラストのお題を作成する MCP Server です。
Claude Desktop 等の MCP Client を使って、お題を作成することができます。
現在、以下のグループに対応しています。
μ’s
Aqours
虹ヶ咲
Liella!
蓮ノ空
イキヅライブ
Related MCP server: Smart Image Generator
サンプル
例:Claude Desktop から以下のメッセージを送信
Liella と 蓮ノ空のメンバー3人でお題を作ってくださいMCP Server への Request
{
"num": 3,
"seriesIDs": ["4","5"]
}MCP Server からの Response
{"characters":[{
"name":"澁谷かのん",
"link":"https://lovelive-sif2.bushimo.jp/member/liella/kanon/"
},{
"name":"百生吟子",
"link":"https://www.lovelive-anime.jp/hasunosora/member/07/"
},{
"name":"鬼塚夏美",
"link":"https://lovelive-sif2.bushimo.jp/member/liella/natsumi/"
}],
"place":"牧場",
"time":"夜",
"action":"観光",
"item":"リボン"}動作環境
以下の環境で動作確認しています。
macOS Sequoia 15.4 (Windows, Linux 等でも多分動きます)
node v22.11.0
Claude for Mac 0.9.3
使い方
ビルド
npm ci
npm run build動作モード
本 MCP Server は2つの動作モードをサポートしています:
stdio モード (デフォルト): Claude Desktop などのローカル MCP クライアント用
HTTP モード: リモートサーバで公開する場合
stdio モード (ローカル利用)
MCP Client の設定
/PATH/TO の部分は、このプロジェクトを配置したディレイクトリ名に変更してください。
{
"mcpServers": {
"odai-lovelive": {
"command": "node",
"args": [
"/PATH/TO/odai-lovelive-mcp-server/build/index.js",
"/PATH/TO/odai-lovelive-mcp-server/data.json"
]
}
}
}MCP Client からメッセージを送る
人数1人 - 10人
省略時は1人
グループ複数指定可能
省略時は全グループが対象
Liella と 蓮ノ空のメンバー3人でお題を作ってくださいHTTP モード (リモートサーバ公開)
外部サーバで公開して、不特定多数のユーザーが利用できるようにする場合の設定です。
1. 環境変数の設定
.env.example をコピーして .env ファイルを作成し、必要に応じて編集します:
cp .env.example .env.env ファイルの例:
MCP_MODE=http
PORT=3000
HOST=localhost
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_MAX_REQUESTS=1002. サーバの起動
# 環境変数を読み込んで起動
export $(cat .env | xargs)
node build/index.js /path/to/data.jsonまたは、直接環境変数を指定:
MCP_MODE=http PORT=3000 node build/index.js ./data.json3. エンドポイント
SSE エンドポイント:
http://localhost:3000/sseヘルスチェック:
http://localhost:3000/health
4. nginx でリバースプロキシ設定 (推奨)
HTTPS 接続は nginx などのリバースプロキシで対応することを推奨します。
/etc/nginx/sites-available/mcp-server の設定例:
server {
listen 443 ssl http2;
server_name your-domain.com;
# SSL 証明書 (Let's Encrypt など)
ssl_certificate /etc/letsencrypt/live/your-domain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/your-domain.com/privkey.pem;
# セキュリティヘッダー
add_header Strict-Transport-Security "max-age=31536000" always;
# ヘルスチェック
location /health {
proxy_pass http://localhost:3000/health;
proxy_http_version 1.1;
}
# SSE エンドポイント
location /sse {
proxy_pass http://localhost:3000/sse;
proxy_http_version 1.1;
# SSE に必要な設定
proxy_set_header Connection '';
proxy_set_header Cache-Control 'no-cache';
proxy_buffering off;
# タイムアウト設定
proxy_read_timeout 86400;
# ヘッダーの転送
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# メッセージ送信エンドポイント
location /message {
proxy_pass http://localhost:3000/message;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
# HTTP から HTTPS へリダイレクト
server {
listen 80;
server_name your-domain.com;
return 301 https://$server_name$request_uri;
}5. MCP Client の設定 (HTTP モード)
Claude Desktop などの設定:
{
"mcpServers": {
"odai-lovelive": {
"url": "https://your-domain.com/sse"
}
}
}データのカスタマイズ
構成ファイル(json)の引数で渡しているデータファイル data.json を編集して内容のカスタマイズが可能です。
「サニパ様がいないのはけしからん」「Saint Snowどこ」等のご不満がある方は編集してみてください。
(src/index.ts の説明文に手を加える必要があるかもしれません)
補足
本ツールは「ラブライブ!」運営様とは全く関係なく、私個人のファン活動の一部として制作されたものです。
使用しているデータのうち、「ラブライブ!」シリーズに関わるものの権利は各作品の権利者様にあります。
This server cannot be deployed
Maintenance
Related MCP Connectors
Generate logos, social posts, app screenshots, comic panels & visual-novel assets from prompts.
Find a tested AI image or video prompt — toy, LEGO, plushie, portrait, poster — and render it.
Generate, edit, and explore AI images. Flux, Imagen, LoRA identity swap, upscale, and more.
Craft quick, personalized greetings by name. Generate ready-to-use greeting prompts for a consiste…
Related MCP Servers
- AlicenseNot gradedqualityDmaintenancePowerful image generation system leveraging multiple Stable Diffusion models (flux-schnell, flux-dev, sdxl, sd3, sd15) for creating high-quality AI-generated images with precise customization.20MIT
- AlicenseAqualityAmaintenanceEnables AI assistants to generate and edit images using Google's Gemini 2.5 Flash Image API with intelligent prompt enhancement. Supports text-to-image generation, image editing with natural language instructions, and advanced features like character consistency and multi-image blending.12,925 npm166MIT
- AlicenseAqualityAmaintenanceTurn Claude Code / OpenClaw into your local Lovart. Local ComfyUI, 1,400+ prompt library, multi-direction parallel generation.17376 npm1,771MIT
- AlicenseNot gradedqualityDmaintenanceEnables semantic search of Danbooru tags using natural language queries to generate precise prompts for anime-style image generation.7MIT