digital-drive-mcp
Enables extraction of text content from Google Docs (and Google Sheets/Slides) via export format, allowing the AI agent to read the text of documents stored in the Drive folder.
Allows the AI agent to browse and read a public Google Drive folder, including listing team sub-folders, listing all files, and reading file contents as text.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@digital-drive-mcpList all files in the Akij digital management Drive"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
digital-drive-mcp
A Model Context Protocol (MCP) server that lets an AI agent browse and read the Akij Resource Digital Management Google Drive folder (public link). Built with TypeScript + the official MCP SDK, Streamable HTTP transport, deployable on Vercel.
Tools
Tool | Description |
| The 5 team-member sub-folders (name + folder id) |
| Files/sub-folders in any Drive folder (defaults to root) |
| Flattened list of every file across all 5 sub-folders |
| Read a file's content as text (Google Docs/Sheets/Slides, Word/Excel/PPT, markdown/HTML) |
| Direct download URL for a file |
Related MCP server: gdrive-mcp-server
How it reads files (no credentials required)
The folder is public ("anyone with link"), so the server uses Google's public endpoints:
Listing — scrapes
drive.google.com/drive/folders/<id>and parses the embedded_DRIVE_ivdJSON.Google Docs/Sheets/Slides — exported via
docs.google.com/.../export?format=txt|csv.Office files (.xlsx/.docx/.pptx) — downloaded and parsed in-memory with
fflate(ZIP + XML → text).Text/HTML/Markdown — downloaded and returned raw.
Local development
npm install
npm run dev # HTTP server on http://localhost:3000/mcp
# or
npm run stdioDeploy
vercel --prod
# endpoint: https://<project>.vercel.app/api/mcpConnect
{
"mcp": {
"digital-drive-mcp": {
"type": "remote",
"url": "https://<project>.vercel.app/api/mcp",
"enabled": true
}
}
}If the Drive folder is ever made private, listing/reading will fail — switch to a Google Service Account + Drive API, or keep the folder shared.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Read-only MCP tools for AI agent discovery, structured resources, and NIULAI information.
Browse and manage files in your Moxt AI workspace from any MCP client.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to securely access and manage Google Drive files and Google Sheets within a specified folder scope, with support for reading various file types including PDFs and Excel.7151MIT
- FlicenseNot gradedqualityCmaintenanceEnables MCP-compatible AI assistants to interact with a user's Google Drive, including listing, searching, reading, creating, updating, and deleting files, with authentication via Google OAuth.-
- FlicenseNot gradedqualityCmaintenanceEnables LLM agents to list Google Drive files, read/write Google Sheets, and query external REST APIs through MCP tools.-
- FlicenseNot gradedqualityCmaintenanceEnables interacting with Google Drive folders through an MCP server, allowing listing, searching, and reading files using tools like list_files, search_files, get_file, and read_file.-