Skip to main content
Glama

GCP MCP Server

by enesbol
__init__.py427 B
"""Utility functions for MCP server.""" import json from typing import Any def format_json_response(data: Any) -> str: """Format data as a JSON string with consistent styling.""" return json.dumps({"status": "success", "data": data}, indent=2) def format_error_response(message: str) -> str: """Format error message as a JSON string.""" return json.dumps({"status": "error", "message": message}, indent=2)

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/enesbol/gcp-mcp'

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