Skip to main content
Glama

Google Drive MCP Server

index.js430 B
module.exports = enableDestroy; function enableDestroy(server) { var connections = {} server.on('connection', function(conn) { var key = conn.remoteAddress + ':' + conn.remotePort; connections[key] = conn; conn.on('close', function() { delete connections[key]; }); }); server.destroy = function(cb) { server.close(cb); for (var key in connections) connections[key].destroy(); }; }

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