We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GongRzhe/ACP-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•371 B
# acp_mcp_server/__init__.py
"""
ACP-MCP Bridge Server
A bridge server that connects Agent Communication Protocol (ACP) agents
with Model Context Protocol (MCP) clients.
Supports multiple transport modes:
- STDIO (default, for Claude Desktop)
- SSE (Server-Sent Events)
- Streamable HTTP
"""
from .server import ACPMCPServer, main
__all__ = ["ACPMCPServer", "main"]