We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MCP-Mirror/enesbol_gcp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•792 B
"""Common prompts for GCP operations."""
from ..core import mcp
@mcp.prompt()
def gcp_service_help(service_name: str) -> str:
"""Get help for using a GCP service."""
return f"""
I need help with using {service_name} in Google Cloud Platform.
Please help me understand:
1. Common operations and best practices
2. Required parameters and configuration
3. Security considerations
4. Recommended patterns for {service_name}
"""
@mcp.prompt()
def error_analysis(error_message: str) -> str:
"""Analyze a GCP error message."""
return f"""
I received this error from GCP:
{error_message}
Please help me:
1. Understand what caused this error
2. Find potential solutions
3. Prevent similar errors in the future
"""