tokenhub-aigc-model
TokenHub AIGC Model — MCP Server
MCP(Model Context Protocol) を利用して TokenHub 大モデルサービスの画像生成機能を呼び出す MCP Server です。お客様は MCP に対応した任意のクライアント(WorkBuddy / Claude Desktop / Cursor / 各種 AI IDE)で TokenHub API Key を設定するだけで、自然言語でテキストからの画像生成、画像からの画像生成/画像編集インターフェースを直接呼び出すことができます。
現在組み込みのサンプルモデル:custom-model-og-v2(GPT 系の画像生成モデル、同期返却)。
機能特性
2つのツール
tokenhub_generate_image:テキストから画像生成(POST /v1/wand/og-image/generation、同期返却)tokenhub_edit_image:画像から画像生成/画像編集(POST /v1/wand/og-image/edits、同期返却、1〜16枚の入力画像、マスクによる部分再描画に対応)
2つの転送方式
stdio(デフォルト):ローカルクライアントに直接接続、デプロイ不要streamable-http:リモートエンドポイントとしてデプロイし、外部クライアント/チームのリモート接続に対応
柔軟な設定:API Key、サイトドメイン、モデル名はいずれも環境変数で設定可能。1回の呼び出しでドメイン/モデルを上書きできます(サイトやモデルの切り替えに設定変更は不要)
Related MCP server: MCP OpenAI Image Generation Server
クイックスタート
方式1:stdio(ローカル接続、まずはこちらを推奨)
MCP クライアントの設定に、コマンドタイプの MCP Server を追加します。
客户端 | 設定場所 |
WorkBuddy |
|
Claude Desktop |
|
Cursor | Settings → MCP → Add new MCP server |
{
"mcpServers": {
"tokenhub": {
"type": "stdio",
"command": "npx",
"args": ["-y", "tokenhub-aigc-model"],
"env": {
"TOKENHUB_API_KEY": "你的 TokenHub API Key",
"TOKENHUB_BASE_URL": "https://tokenhub.tencentmaas.com",
"TOKENHUB_MODEL": "custom-model-og-v2"
},
"description": "TokenHub 生图 MCP"
}
}
}設定後はすぐに会話できます:「竹林の中で踊る子猫を描いて、2048x2048」。
方法二:Streamable HTTP(リモートデプロイ)
{
"mcpServers": {
"tokenhub": {
"url": "https://你的服务域名/mcp",
"headers": { "x-mcp-auth-token": "部署时设置的 MCP_AUTH_TOKEN" }
}
}
}環境変数
変数 | 必須 | デフォルト値 | 説明 |
| 必須(未設定の場合は呼び出し時にエラー) | - | TokenHub コンソールで取得する API Key。リクエストヘッダー |
| 任意 |
| サイトドメイン(下のサイト説明を参照)。末尾のスラッシュ不要 |
| 任意 |
| デフォルトのモデル名。1回の呼び出しで上書き可能 |
| 任意(HTTP モードでは推奨) | - | HTTP モードでの任意の認証。設定後、/mcp リクエストには |
サイトドメイン
TokenHub は地域ごとに分散デプロイされています。各サイトのお客様は対応するドメインを入力する必要があります。デフォルトは国内サイトの広州です:
サイト | ドメイン(例) |
国内サイト・広州 |
|
その他のサイト(国内シンガポール / 国際サイト広州、シンガポール、米国西部など) | TokenHub 営業/技術サポートに連絡して対応ドメインを取得し、 |
ツールパラメータの説明
tokenhub_generate_image(テキストから画像生成)
パラメータ | 必須 | 説明 |
| 必須 | テキストの説明。最大 32000 文字 |
| 任意 | 1回の呼び出しでサイトドメイン / モデル名を上書き |
| 任意 | 生成サイズ |
| 任意 |
|
| 任意 | 生成枚数 1〜10、デフォルト 1 |
| 任意 |
|
| 任意 |
|
| 任意 | JPEG 圧縮レベル 0〜100(jpeg のみ) |
| 任意 |
|
tokenhub_edit_image(画像から画像生成/編集)
上記の大部分のパラメータを共有します。追加パラメータは次のとおりです:
パラメータ | 必須 | 説明 |
| 必須 | 入力画像 1〜16 枚。 |
| 任意 | 部分再描画用マスク。サイズは入力画像と一致させる必要があります |
| 任意 | 追加で |
戻り値:画像 URL リスト、request_id(問題調査用)、total_tokens(課金用)。response_format=b64_json の場合は base64 の画像ブロックが含まれ、直接表示できます。
エラー処理
ツール呼び出しに失敗すると
isError: trueを返します。エラー情報にはstatus、上流エラーのcode、request_idが含まれます。権限/レート制限/パラメータエラーが発生した場合は、
request_idを保存したうえで TokenHub 技術サポートに送信し、特定してもらってください。TOKENHUB_API_KEYが未設定の場合、ツール呼び出しは明確なメッセージを直接返します(サーバーは正常に起動できます)。
HTTP モードでのデプロイ(リモート)
# 本地启动(默认 stdio)
npx -y tokenhub-aigc-model
# HTTP 模式
TOKENHUB_API_KEY=xxx MCP_AUTH_TOKEN=部署密钥 \
npx -y tokenhub-aigc-model --transport=http --port=3000 --host=127.0.0.1エンドポイント:
POST /mcp、GET /mcp:MCP プロトコルの入口GET /health:ヘルスチェック
公網にデプロイする場合は必ず:
MCP_AUTH_TOKENを設定するか、前置ゲートウェイ/リバースプロキシ(例:EdgeOne、CLB、Nginx)で認証を行う;HTTPS を使用する;
base_urlは1回の呼び出しで上書き可能なため、信頼できる環境でのみ開放することを推奨します。
開発とリリース
npm install # 安装依赖
npm run build # TypeScript 构建到 dist/
npm test # 单元测试 + stdio/HTTP 冒烟测试(共 20 个用例)
npm pack --dry-run # 查看发布内容npmjs に公開する場合(現在の registry が Tencent ミラーの場合は、明示的に指定する必要があります):
npm run build
npm version patch
npm publish --access public --registry=https://registry.npmjs.org
git tag v0.1.0 && git push --tags⚠️ 重要な注意事項
ホワイトリスト登録:
custom-model-og-v2はテストモデルのため、TokenHub のプロダクト/バックエンド担当者に連絡し、UIN と Appid を提出してホワイトリスト登録を行ったうえで使用できます。未登録で呼び出すと権限エラーが返ります。API Key:TokenHub コンソール で対応するモデル専用の Key を作成してください。Key は作成時に一度しか表示されないため、確実に保管してください。
課金:TokenHub は Token 単位の課金(約 10 元/百万トークン)で、時間ごとに精算されます。
n>1や複数枚の入力画像では消費が大幅に増えるため、営業担当者はお客様に早めに割引申請を行ってください。費用計算式(人民元):テキスト入力 token×3.35 + テキストキャッシュ入力×0.8375 + 画像入力×5.36 + 画像キャッシュ入力×1.34 + 出力画像×20.1 = 1回のタスクの token 消費量(換算係数は為替レートに関係します。現在の係数は 6.7)。
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides tools for generating and editing images using OpenAI's gpt-image-1 model via an MCP interface, enabling AI assistants to create and modify images based on text prompts.15Apache 2.0
- AlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to generate and edit images through OpenAI's DALL-E models via MCP tools. Supports text-to-image generation and image-to-image editing with configurable parameters for size, quality, and style.
- AlicenseAqualityDmaintenanceEnables AI photo generation, editing, and video creation from MCP-compatible clients like Claude Desktop, Cursor, and Windsurf.87MIT
- AlicenseNot gradedqualityBmaintenanceEnables image generation and editing using Google Vertex AI's Imagen API through natural language commands in MCP clients like Claude Desktop.571MIT
Related MCP Connectors
Generate images with any major model — one API key, one prepaid balance, one MCP.
Generate on-brand images from your AI agent: design, edit, and render templates over MCP.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/willsygao/tokenhub-aigc-model'
If you have feedback or need assistance with the MCP directory API, please join our Discord server