Skip to main content
Glama
AIDC-AI

pixelle-mcp-Image-generation

by AIDC-AI
tool_converter.py695 B
# Copyright (C) 2025 AIDC-AI # This project is licensed under the MIT License (SPDX-License-identifier: MIT). def tools_from_chaintlit_to_openai(chainlit_tools: list[dict]) -> dict: openai_tools = [] for t in chainlit_tools: parameters = t.inputSchema openai_tools.append({ "type": "function", "function": { "name": t.name, "description": t.description, "parameters": { "type": "object", "properties": parameters["properties"], "required": parameters.get("required", []) } } }) return openai_tools

Latest Blog Posts

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/AIDC-AI/Pixelle-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server