Seedream MCP Server
Click on "Install 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., "@Seedream MCP Servergenerate an image of a futuristic city at sunset"
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.
Seedream MCP Server
基于火山引擎 Seedream 模型的图片生成 MCP 服务器。
通过 MCP (Model Context Protocol) 协议,让 AI 助手能够调用 Seedream 模型生成高质量图片。
功能特性
✨ 文生图 (Text-to-Image):根据文本描述生成图片
✨ 文生组图 (Text-to-Multi-Image):根据文本描述生成多张图片(4.5/5.0 版本)
🖼️ 图生图 (Image-to-Image):基于参考图片生成新图片(4.5/5.0 版本)
🖼️ 多图融合 (Multi-Image Fusion):融合多张图片生成新图片(4.5/5.0 版本)
🔗 联网搜索 (Web Search - 5.0):结合联网搜索结果生成图片
⚡ 流式输出 (Streaming):支持流式返回生成的图片
🔄 所有输出为 Markdown 格式,方便 AI 直接展示
Related MCP server: SeeDream Image MCP
快速开始
前提条件
Python 3.10+
火山引擎 API Key(获取方式)
安装
# 方式一:使用 uvx(推荐,自动管理依赖)
uvx timeverse-seedream-mcp
# 方式二:使用 pip
pip install timeverse-seedream-mcp配置环境变量
export VOLC_API_KEY="your-api-key-here"
# 可选,默认为 doubao-seedream-5-0-260128
export VOLC_MODEL="doubao-seedream-5-0-260128"运行
timeverse-seedream-mcpMCP 配置
将以下配置添加到你的 MCP 客户端配置文件中:
{
"mcpServers": {
"seedream": {
"command": "uvx",
"args": ["timeverse-seedream-mcp"],
"env": {
"VOLC_API_KEY": "your-api-key-here",
"VOLC_MODEL": "doubao-seedream-5-0-260128"
}
}
}
}需要先安装 uv:
brew install uv或pip install uv
uvx会自动下载并运行,无需手动pip install。如果已通过pip install安装,也可直接配置"command": "timeverse-seedream-mcp"。
工具列表
工具名称 | 描述 | 适用模型 |
| 文生图 - 根据文本描述生成图片 | 所有版本 |
| 文生组图 - 根据文本生成多张不同图片 | 4.5/5.0 |
| 图生图 - 基于参考图片生成新图片 | 4.5/5.0 |
| 多图融合 - 融合多张图片生成新图片 | 4.5/5.0 |
API 参考
Base URL
https://ark.cn-beijing.volces.com/api/v3兼容性
本 API 完全兼容 OpenAI Images API 格式,可以使用 OpenAI SDK 直接调用。
模型版本
模型 | 版本 | 支持功能 |
| 5.0 | 文生图、文生组图、图生图、多图融合、联网搜索、流式 |
| 4.5 | 文生图、文生组图、图生图、多图融合、流式 |
| 4.0 | 文生图、流式 |
开发
# 克隆仓库
git clone https://github.com/your-org/timeverse-seedream-mcp.git
cd timeverse-seedream-mcp
# 安装开发依赖
pip install -e ".[dev]"
# 运行测试
pytest
# 运行 Lint
ruff check src/
mypy src/Available Tools
6 toolsseedream_generate_sequenceA
组图生成:根据文本描述生成一组连续图片。
适用于需要生成多张连续画面的场景,如故事板、漫画分镜等。 支持 4.5 和 5.0 模型,每批最多 15 张。
示例:
prompt: "一只小猫咪从出生到长大的四个阶段"
prompt: "四季变换的同一片森林,春、夏、秋、冬"
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | 输出尺寸 | 2K |
| model | No | 模型版本(需 4.5 或 5.0) | doubao-seedream-5-0-260128 |
| prompt | Yes | 图像描述提示词,描述组图的主题和内容 | |
| save_to | No | 保存图片到本地目录路径(b64_json 模式必填) | |
| watermark | No | 是否添加水印 | |
| max_images | No | 生成图片数量 (1-15) | |
| output_format | No | 输出格式 | png |
| response_format | No | 返回格式: url(返回图片链接)或 b64_json(返回base64编码图片数据) | url |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full behavioral disclosure burden. It covers image count limits (1-15), model versions, output formats, watermark, and save_to path. Does not mention auth needs or rate limits, but the generative nature is well-described with continuous sequence. Lacks details on error states or retry behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise: three sentences plus two examples. Front-loaded with core purpose. No filler; every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 8 parameters and no output schema, description covers all aspects: usage scenarios, limits, model choices, output formats, and provides examples. Sufficient for an AI agent to understand tool capabilities and limitations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%. Description adds meaning beyond schema: prompt as '描述组图的主题和内容', model as '需 4.5 或 5.0', save_to as 'b64_json 模式必填', etc. Provides examples for prompt. Adequately informs parameter usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb+resource: '组图生成:根据文本描述生成一组连续图片.' Specifies generation of a sequence of continuous images. Distinguishes from siblings like seedream_text_to_image (single image) and seedream_merge_images (merge).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit when to use: '适用于需要生成多张连续画面的场景,如故事板、漫画分镜等.' Also mentions supported models (4.5 and 5.0) and batch limit of 15. Does not explicitly state when not to use or name alternatives, but context implies single-image tasks use text_to_image.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
seedream_image_to_imageB
图生图:基于参考图片生成新图片。
提供一张参考图片 URL,结合文本描述生成新的图片。 支持 4.5 和 5.0 模型。
示例:
prompt: "把这张照片改成油画风格"
prompt: "给这张图片加上星空背景"
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | 输出尺寸 | 2K |
| model | No | 模型版本(需 4.5 或 5.0) | doubao-seedream-5-0-260128 |
| scale | No | 文本描述影响程度 (0-1),越大文本影响越大 | |
| prompt | Yes | 图像描述提示词,描述对参考图的修改 | |
| save_to | No | 保存图片到本地目录路径(b64_json 模式必填) | |
| image_url | Yes | 参考图片 URL(需可公开访问的图片地址) | |
| watermark | No | 是否添加水印 | |
| output_format | No | 输出格式 | png |
| response_format | No | 返回格式: url(返回图片链接)或 b64_json(返回base64编码图片数据) | url |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states that the tool generates a new image based on a reference and prompt, but it does not disclose behavioral traits such as destructive nature (e.g., whether the original image is modified), authentication requirements, rate limits, or error handling (e.g., invalid URL). The examples are illustrative but not transparent about behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise, with just one sentence and two example prompts. It is front-loaded with the purpose. While efficient, it could be slightly more structured (e.g., bullet points for models or parameters). No redundant information, but the conciseness leaves out useful details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (9 parameters, no output schema), the description is minimal. It covers the core functionality but does not explain output behavior, response formats, or parameter interaction. The schema covers parameter descriptions, so the description's job is to provide higher-level context, which it does only partially. The examples help but are not sufficient for full contextual completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, meaning each parameter is already explained in the schema. The tool description adds minimal additional semantic value beyond the schema: it provides example prompts but does not elaborate on parameter meaning, constraints, or interactions. Thus, a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '图生图:基于参考图片生成新图片' (image-to-image: generate a new image based on a reference image). It provides specific examples of prompts, making the intent unmistakable. It is well-distinguished from sibling tools like seedream_text_to_image by explicitly requiring a reference image URL.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use the tool: provide a reference image URL and a text description. However, it does not provide any guidance on when not to use it or how it compares to alternatives like seedream_text_to_image or seedream_merge_images. The mention of model versions (4.5 and 5.0) is helpful but not sufficient for clear usage boundaries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
seedream_list_modelsA
列出可用的 Seedream 模型版本及其特性说明。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description accurately portrays a read-only listing operation with no side effects, which is sufficient given no annotations are provided.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, front-loaded sentence with no extraneous words; every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, output-schema-less listing tool, the description is fully complete and requires no additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist; the description correctly adds no parameter information (baseline 4).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists available Seedream model versions and their features, using a specific verb-resource pair that distinguishes it from sibling generation tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context (before generation), but provides no explicit guidance on when to use vs alternatives or exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
seedream_merge_imagesA
多图融合:融合多张图片生成新图片。
提供多张参考图片 URL,结合文本描述将它们融合成一张新图片。 最多支持 10 张图片,可在提示词中用「图1」「图2」等指代各图片。
示例:
prompt: "把图1的人物放到图2的背景中"
prompt: "融合图1和图2的风格,生成一张新年贺卡"
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | 输出尺寸 | 2K |
| model | No | 模型版本(需 4.5 或 5.0) | doubao-seedream-5-0-260128 |
| prompt | Yes | 融合描述提示词。可用「图1」「图2」等指代各图片 | |
| save_to | No | 保存图片到本地目录路径(b64_json 模式必填) | |
| watermark | No | 是否添加水印 | |
| image_urls | Yes | 参考图片 URL 列表(最多 10 张) | |
| output_format | No | 输出格式 | png |
| response_format | No | 返回格式: url(返回图片链接)或 b64_json(返回base64编码图片数据) | url |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It discloses that the tool generates a new image by merging URLs and a prompt, and that up to 10 images are supported. However, it does not mention any behavioral traits like output resolution constraints, processing time, or whether the original images are modified. Given the lack of annotations, this is adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: a one-line purpose, a short explanation of usage, and two examples. Every sentence adds value, and there is no filler. It is front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (8 parameters, 2 required, no output schema), the description covers the essential aspects: how to use, what parameters are needed, and how to refer to images. It lacks details about the return format or model differences, but the schema already provides parameter descriptions. Overall, it is sufficiently complete for an agent to use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so parameters are already well-documented in the schema. The description adds value by explaining that images can be referenced as '图1' etc. in the prompt and provides examples, but this reinforces rather than significantly extends the schema descriptions. A score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states '多图融合:融合多张图片生成新图片' which translates to a specific verb+resource: merging multiple images into a new one. It provides concrete examples and distinguishes this tool from siblings like text_to_image or image_to_image by focusing on multi-image fusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells when to use the tool (when you have multiple images to merge) and includes a limit of 10 images. It does not explicitly state when not to use or compare to alternatives, but the context is clear enough that an agent would understand this is for merging, not generation from scratch.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
seedream_text_to_imageA
文生图:根据文本描述生成图片。
使用 Seedream 模型(默认 5.0)根据文本提示词生成高质量图片。 支持 1K/2K/3K/4K 等多种分辨率,可一次生成多张图片。
示例:
"一只可爱的柴犬在樱花树下睡觉,宫崎骏动画风格"
"未来城市夜景,赛博朋克风格,霓虹灯闪烁,4K画质"
"水墨画风格的山水,远山如黛,近水含烟"
注意:5.0 和 4.0 版本支持 n>1(多张),4.5 仅支持 n=1。
| Name | Required | Description | Default |
|---|---|---|---|
| n | No | 生成图片数量 (1-4)。注意: 4.5 模型仅支持 1 张 | |
| size | No | 输出尺寸。可选: 1K, 2K, 3K, 4K 或自定义如 1920x1080 | 2K |
| model | No | 模型版本。可选: doubao-seedream-5-0-260128, doubao-seedream-4-5-251128, doubao-seedream-4-0-250828 | doubao-seedream-5-0-260128 |
| prompt | Yes | 图像描述提示词,中英文均可。建议不超过 300 个汉字或 600 个英文单词 | |
| save_to | No | 保存图片到本地目录路径(b64_json 模式必填)。如: /Users/xxx/images | |
| watermark | No | 是否添加水印 | |
| output_format | No | 输出格式: png (默认, 仅5.0支持) 或 jpeg | png |
| response_format | No | 返回格式: url(返回图片链接)或 b64_json(返回base64编码图片数据) | url |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that multiple images are supported only for certain model versions, and mentions output formats (URL or base64) and watermarks. However, it does not address potential issues like rate limits, content moderation, or timeout, leaving gaps in behavioral knowledge.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured: purpose statement, model capabilities, examples, and a note. The three example prompts, while useful, add some verbosity. Overall, it is largely concise and front-loaded, with minimal waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 8 parameters and no output schema, the description covers critical aspects: model versions, image count, size options, output formats, and watermark. It does not detail the return structure (e.g., how URLs are presented), but for an image generation tool, the provided information is sufficient for basic invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (baseline 3). The description adds value by explaining model version constraints for the 'n' parameter, suggesting prompt length limits, and noting that size can be custom (e.g., 1920x1080). This enriches the schema beyond defaults and enums.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states it generates images from text descriptions ('文生图:根据文本描述生成图片'), providing clear purpose. It uses a specific verb ('生成') and resource ('图片'). However, it does not differentiate from sibling tools like seedream_image_to_image or seedream_merge_images, lacking explicit contrast.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a useful note on model version limitations for multiple images ('注意:5.0 和 4.0 版本支持 n>1,4.5 仅支持 n=1'), guiding parameter selection. It also provides example prompts to illustrate usage context. No explicit when-not-to-use or alternative tools mentioned, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
seedream_web_search_generateA
联网搜索 + 文生图:结合实时信息生成图片(仅 5.0 模型)。
Seedream 5.0 专属功能,在生图前先搜索互联网获取实时信息, 适合需要结合最新资讯、热点事件或特定知识生成图片的场景。
示例:
"2024年巴黎奥运会开幕式的精彩瞬间"
"最新的特斯拉 Cybertruck 在火星表面行驶"
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | 输出尺寸 | 2K |
| model | No | 模型版本(仅 5.0 支持联网搜索) | doubao-seedream-5-0-260128 |
| prompt | Yes | 图像描述提示词,可包含对实时信息的要求 | |
| save_to | No | 保存图片到本地目录路径(b64_json 模式必填) | |
| watermark | No | 是否添加水印 | |
| output_format | No | 输出格式 | png |
| response_format | No | 返回格式: url(返回图片链接)或 b64_json(返回base64编码图片数据) | url |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries full burden. It mentions the search-before-generation behavior and model restriction, but fails to disclose potential issues like search failure handling, rate limits, or any destructive aspects. Behavioral traits beyond the core function are lacking.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and front-loaded with the core purpose. Every sentence is meaningful: first sentence states function and model restriction, second explains use case, and examples illustrate. Zero wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema, the description adequately explains the tool's purpose and use case. It covers model restriction and parameter semantics. However, it could be more complete by describing the output format or what the generated image looks like.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so parameters are well-documented. The description adds context for the prompt parameter (can include real-time requirements) and reiterates model restriction. However, it adds minimal new semantic value beyond the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool combines web search with text-to-image generation, specifying it's only for the 5.0 model. The verb 'generate image' and resource 'web search + text' are explicit, and it distinguishes from siblings by model version restriction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use (scenarios needing real-time info) and explicitly states it's exclusive to the 5.0 model. Examples are given but it does not explicitly mention when not to use or list alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clearly distinct purpose: sequence generation, image-to-image, model listing, image merging, text-to-image, and web search generation. No two tools overlap in functionality.
All tools follow a consistent 'seedream_verb_noun' pattern using snake_case, making them predictable and easy to distinguish.
With 6 tools, the server is well-scoped for image generation tasks, covering all major operations without being bloated or too sparse.
The tool set covers the full lifecycle of image generation: text-to-image, image-to-image, merging, sequence generation, and web-enhanced generation, plus model listing. No obvious gaps exist.
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 Connectors
MCP server for ByteDance Seedream AI image generation
AI image, video, voice and music generation over MCP, routed to Veo 3.1, Seedance 2.0 and more.
MCP server for Qwen Image 3 AI image generation
Generate images with any major model — one API key, one prepaid balance, one MCP.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables AI image generation through Volcano Engine's Seedream 4.0 API, supporting text-to-image, image-to-image, multi-image fusion, and sequential generation with automatic local saving and Markdown support.521MIT
- AlicenseNot gradedqualityDmaintenanceGenerates high-quality images using Volcano Engine's SeeDream 4.0 model with AI-powered prompt generation. Supports custom dimensions and intelligent reference images for seamless image creation in MCP-enabled clients.1918MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI image generation using Volcano Engine's Seedream 4.0 API with text-to-image, image-to-image, multi-image fusion capabilities, built-in prompt templates, and automatic cloud storage integration.19MIT
- AlicenseAqualityCmaintenanceEnables AI image generation using Doubao Seedream models and video generation using Doubao Seedance models through Volcano Engine's API, supporting text-to-image, image-to-image, text-to-video, and task status queries.3263MIT
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/elimyliu/timeverse-seedream-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server