byteplus-image-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| BYTEPLUS_API_KEY | Yes | API key dari console BytePlus | |
| BYTEPLUS_IMAGE_OUTPUT_DIR | No | Folder simpan gambar | ~/Pictures/byteplus-mcp |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| byteplus_generate_imageA | Generate gambar via BytePlus ModelArk (Seedream) untuk logo, mockup UI/UX, dan ilustrasi dokumen. Tool ini memanggil API BytePlus images/generations dengan model keluarga Seedream. Pemakaian otomatis mengurangi kuota gratis akun (Seedream 4.5: 200 gambar, Seedream 4.0: 200 gambar) sebelum menyentuh saldo berbayar. Args: params (GenerateImageInput): Parameter tervalidasi: - prompt (str): Deskripsi gambar (bahasa Inggris disarankan), 3-2000 karakter - model (Optional[ImageModel]): Override model secara eksplisit - purpose (Optional[Purpose]): 'logo'|'mockup' -> Seedream 4.5, 'document' -> Seedream 4.0 - size (ImageSize): '1K'|'2K'|'4K' (default 2K) - count (int): 1-6 gambar per request - save_to_disk (bool): Download hasil ke folder output lokal (default true) - watermark (bool): Watermark ByteDance (default false) - seed (Optional[int]): Untuk hasil reproducible Returns: str: JSON berisi status, model terpakai, URL gambar (valid 24 jam), dan path lokal jika berhasil di-download. Contoh sukses: { "status": "success", "model": "seedream-4-5-251128", "count": 1, "images": [ {"url": "https://ark-content-generation...", "local_path": "C:/Users/.../logo-duta.jpg", "size_kb": 335} ], "usage_tokens": 16384 } Kapan dipakai: - "Buatkan logo ..." -> purpose='logo' - "Mockup halaman utama web ..." -> purpose='mockup' - "Ilustrasi untuk proposal ..." -> purpose='document' |
| byteplus_list_modelsA | Tampilkan daftar model Seedream yang tersedia beserta panduan pemilihan dan info kuota. Returns: str: JSON daftar model dengan model_id, use_case, harga per gambar, dan sisa kuota gratis (informasional). Gunakan tool ini sebelum byteplus_generate_image jika ragu memilih model. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
byteplus_generate_image is solely responsible for creating images, while byteplus_list_models handles model discovery and quota information. There is no functional overlap between the two tools.
Both tool names follow the same byteplus_verb_noun pattern: generate_image and list_models. The naming is consistent, predictable, and clearly conveys each tool's action.
With only two tools, the server is slightly under the typical 3-15 range, but the count is reasonable for a narrow image-generation purpose. Each tool earns its place: generation is the core action, and model listing supports informed model selection.
For the server's stated purpose of text-to-image generation, the surface is complete: list_models lets an agent choose the right model, and generate_image produces the image with appropriate parameters. There are no obvious dead ends in the core workflow.