We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aardpro/mcp-melotts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•366 B
"""
MCP Doubao Image Generator - A Model Context Protocol server for generating images from text prompts.
Uses Doubao's API to generate images based on text descriptions.
"""
import asyncio
from .server import run_server
__version__ = "1.0.0"
def main():
"""Entry point for the MCP server."""
asyncio.run(run_server())
__all__ = ["main", "__version__"]