We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andyl25/googlecloud-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
schema.d.ts•626 B
/**
* Schema utilities for Google Cloud Spanner
*/
import { SpannerSchema } from './types.js';
/**
* Extracts schema information from Spanner database
*
* @param instanceId Spanner instance ID
* @param databaseId Spanner database ID
* @returns Schema information for the database
*/
export declare function getSpannerSchema(instanceId: string, databaseId: string): Promise<SpannerSchema>;
/**
* Formats schema information as markdown
*
* @param schema The schema to format
* @returns A markdown string representation of the schema
*/
export declare function formatSchemaAsMarkdown(schema: SpannerSchema): string;