You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
service_path: str=Field(..., description="The unique path identifier for the service (e.g., '/fininfo'). Must start with '/'. Use '/all' to get details for all registered servers."),
381
+
username: str=Field(..., description="Username for registry authentication"),
382
+
password: str=Field(..., description="Password for registry authentication")
383
+
) ->Dict[str, Any]:
384
+
"""
385
+
Retrieves detailed information about a registered MCP server.
386
+
387
+
Args:
388
+
service_path: The unique path identifier for the service (e.g., '/fininfo'). Must start with '/'.
389
+
Use '/all' to get details for all registered servers.
390
+
username: Username for registry authentication.
391
+
password: Password for registry authentication.
392
+
393
+
Returns:
394
+
Dict[str, Any]: Detailed information about the specified server or all servers if '/all' is specified.
395
+
396
+
Raises:
397
+
Exception: If the API call fails or the server is not registered.
0 commit comments