get_service_details
Retrieve configuration, status, and connection details for managed database and streaming services in Aiven projects to monitor and integrate cloud infrastructure.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | ||
| service_name | Yes |
Implementation Reference
- mcp_aiven/mcp_server.py:45-49 (handler)This is the handler function implementing the 'get_service_details' tool. It retrieves detailed information about a specific service in an Aiven project using the Aiven client. The @mcp.tool() decorator registers it with the MCP server.@mcp.tool() def get_service_details(project_name, service_name): logger.info("Fetching details for service: %s in project: %s", service_name, project_name) result = aiven_client.get_service(project=project_name, service=service_name) return result