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
__init__.py•412 B
# Copyright (C) 2025 AIDC-AI
# This project is licensed under the MIT License (SPDX-License-identifier: MIT).
"""
Middleware package for Pixelle MCP.
"""
from .static_cache_middleware import StaticCacheMiddleware
from .html_cdn_replace_middleware import HTMLCDNReplaceMiddleware
from .app_js_middleware import AppJsMiddleware
__all__ = ['StaticCacheMiddleware', 'HTMLCDNReplaceMiddleware', 'AppJsMiddleware']