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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- acp_mcp_server/server.py:53-82 (handler)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)
- acp_mcp_server/server.py:53-53 (registration)The @self.mcp.tool() decorator registers the get_server_info function as an MCP tool.@self.mcp.tool()