We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nickweedon/google-docs-mcp-docker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•331 B
"""
Google Docs MCP Server utility modules.
"""
import sys
def log(message: str) -> None:
"""Log a message to stderr (MCP protocol compatibility).
The MCP protocol uses stdout for JSON-RPC communication,
so all logging must go to stderr to avoid corrupting the protocol.
"""
print(message, file=sys.stderr)