Skip to main content
Glama

Google Drive MCP Server

download.d.ts1.81 kB
import * as gapi from 'googleapis-common'; export type Schema = { [index: string]: {}; }; export declare const DISCOVERY_URL = "https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries"; export interface Change { action: 'ADDED' | 'DELETED' | 'CHANGED'; keyName: string; } export interface ChangeSet { changes: Change[]; api: gapi.Schema; } export interface DownloadOptions { includePrivate?: boolean; discoveryUrl: string; downloadPath: string; } export declare const gfs: { mkdir: (dir: string) => Promise<any>; writeFile: (path: string, obj: {}) => void; readFile: (path: string) => string; }; /** * Download all discovery documents into the /discovery directory. * @param options */ export declare function downloadDiscoveryDocs(options: DownloadOptions): Promise<ChangeSet[]>; /** * Determine if any of the changes in the discovery docs were interesting * @param newDoc New downloaded schema * @param oldDoc The existing schema from disk */ export declare function shouldUpdate(newDoc: {}, oldDoc: {}): boolean; /** * Given an arbitrary object, recursively sort the properties on the object * by the name of the key. For example: * { * b: 1, * a: 2 * } * becomes.... * { * a: 2, * b: 1 * } * @param obj Object to be sorted * @returns object with sorted keys */ export declare function sortKeys(obj: Schema): Schema; /** * Get a diff between the two */ export declare function getDiffs(oldDoc: Schema, newDoc: Schema): Change[]; /** * Given a complex nested object, flatten the key paths so this: * { * a: { * b: 2 * }, * c: 3 * } * becomes ... * { * 'a.b': 2 * c: 3 * } */ export declare function flattenObject(doc: Schema, flat?: Schema, prefix?: string): Schema;

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/isaacphi/mcp-gdrive'

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