We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MCP-Mirror/delexw_mcpware'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
backend.py•504 B
"""
Backend module for mcpware
Handles forwarding requests to stdio-based backend MCP servers
This module maintains backward compatibility by re-exporting classes
that have been refactored into separate modules.
"""
# Import for backward compatibility
from .utils import substitute_env_vars
from .stdio_backend import StdioBackend
from .backend_forwarder import BackendForwarder
# Re-export all classes and functions
__all__ = [
'substitute_env_vars',
'StdioBackend',
'BackendForwarder'
]