Skip to main content
Glama

get_server_info

Retrieve essential details about the ACP-MCP bridge server, enabling smooth integration between ACP-based AI agents and MCP-compatible tools like Claude Desktop.

Instructions

Get information about the ACP-MCP bridge server

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the 'get_server_info' tool, decorated with @self.mcp.tool() for automatic registration with FastMCP. It returns a detailed JSON string containing server name, version, components, capabilities, and supported transports.
    @self.mcp.tool()
    async def get_server_info() -> str:
        """Get information about the ACP-MCP bridge server"""
        info = {
            "name": "ACP-MCP Bridge Server",
            "description": "Bridge between Agent Communication Protocol and Model Context Protocol",
            "version": "2.1.0",
            "components": [
                "Agent Discovery Tool",
                "Multi-Modal Message Bridge", 
                "Run Orchestrator",
                "Agent Router",
                "Interactive Manager"
            ],
            "acp_endpoint": self.discovery.acp_base_url,
            "supported_transports": [
                "stdio (default)",
                "sse (Server-Sent Events)",
                "streamable-http"
            ],
            "capabilities": [
                "Agent discovery and registration",
                "Multi-modal message conversion",
                "Sync/async/streaming execution",
                "Intelligent agent routing",
                "Interactive agent sessions",
                "Multiple transport protocol support"
            ]
        }
        return str(info)
  • The @self.mcp.tool() decorator registers the get_server_info function as an MCP tool.
    @self.mcp.tool()

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/GongRzhe/ACP-MCP-Server'

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