We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rishipradeep-think41/drive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { schema as gdriveSearchSchema, search } from './gdrive_search.js';
import { schema as gdriveReadFileSchema, readFile } from './gdrive_read_file.js';
import { schema as gsheetsUpdateCellSchema, updateCell } from './gsheets_update_cell.js';
import { schema as gsheetsReadSchema, readSheet } from './gsheets_read.js';
export const tools = [
{
...gdriveSearchSchema,
handler: search,
},
{
...gdriveReadFileSchema,
handler: readFile,
},
{
...gsheetsUpdateCellSchema,
handler: updateCell,
},
{
...gsheetsReadSchema,
handler: readSheet,
}
];