mcp-google-reader
Reads Google Docs content and converts to Markdown, preserving headings, bold, italic, lists, tables, and links.
Reads Google Sheets content and converts to Markdown tables, with support for selecting specific tabs and cell ranges.
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., "@mcp-google-readerRead the PRD at https://docs.google.com/document/d/abc123/edit"
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.
mcp-google-reader
MCP server that reads Google Docs and Google Sheets content for AI assistants like Claude.
Paste a Google Docs/Sheets link in your message — Claude reads it directly. No more copy-pasting PRDs, tech specs, or test case spreadsheets.
Prerequisites
Node.js 18+ (recommended: Node.js 20 or 22 LTS)
A Google Cloud project with Docs & Sheets APIs enabled
Related MCP server: google-workspace-mcp-with-script
Quick Start
# 1. Set up Google Cloud OAuth (see detailed steps below)
# 2. Authorize (run in your terminal, not inside an AI assistant)
npx mcp-google-reader auth
# 3. Add to your MCP client
claude mcp add -s user google-reader -- npx mcp-google-reader serveFeatures
Google Docs → Markdown: Preserves headings, bold, italic, lists, tables, links
Google Sheets → Markdown table: First row as header, proper column alignment
Multiple URLs: Paste several links in one message — all fetched in parallel
Sheet selection: Read specific tabs by name, or all tabs at once
Caching: 60-second in-memory cache to avoid redundant API calls
OAuth2: Reads any file you have access to in your Google account
Setup
1. Google Cloud Project
Go to Google Cloud Console → Create a new project (or select existing)
Enable Google Docs API: Enable here
Enable Google Sheets API: Enable here
2. OAuth Consent Screen
Choose External → Create
Fill in:
App name:
mcp-google-readerUser support email: your email
Developer contact: your email
Scopes → Save and Continue (no changes needed)
Test users → Add users → add your Google email → Save and Continue
Summary → Back to Dashboard
Keep in Testing mode (sufficient for personal use and small teams)
3. Create OAuth Client ID
Create Credentials → OAuth client ID
Application type: Desktop app
Name:
mcp-google-readerClick Create
Copy the Client ID and Client Secret
4. Authorize
Important: Run this command in your terminal directly — not inside an AI assistant. The auth flow requires interactive input and opening a browser.
npx mcp-google-reader authThis will:
Ask for your Client ID and Client Secret (first time only)
Print an authorization URL — copy and open it in your browser
Sign in with your Google account and click Allow
Browser redirects to localhost — tokens are saved automatically
Credentials stored at ~/.mcp-google-reader/
npxautomatically downloads the package on first run — nonpm install -gneeded.Windows troubleshooting: If you get
sed: command not founderrors, try one of these:# Option 1: Run in Command Prompt (cmd) instead of PowerShell cmd /c "npx mcp-google-reader auth" # Option 2: Install globally first npm install -g mcp-google-reader mcp-google-reader auth
5. Add to your MCP client
Claude Code (CLI)
# Add globally (available in all projects)
claude mcp add -s user google-reader -- npx mcp-google-reader serve
# Or add to current project only
claude mcp add google-reader -- npx mcp-google-reader serveThen restart Claude Code to load the MCP server.
Cursor / Windsurf / VS Code
Create a .mcp.json file in your project root (or copy from .mcp-example.json):
{
"mcpServers": {
"google-reader": {
"command": "npx",
"args": ["mcp-google-reader", "serve"]
}
}
}Then restart your editor.
Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"google-reader": {
"command": "npx",
"args": ["mcp-google-reader", "serve"]
}
}
}Config file location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Usage
Just paste Google links in your message:
Read this PRD and implement the feature:
https://docs.google.com/document/d/1abc123.../edit
Test cases are here:
https://docs.google.com/spreadsheets/d/1xyz789.../editClaude will automatically call read_google_links and get the content.
Multiple links in one message are supported:
Here are the PRD https://docs.google.com/document/d/abc and test cases https://docs.google.com/spreadsheets/d/xyz — please review both.Tools
read_google_links
Extract and read all Google Docs/Sheets URLs from a message.
Parameter | Type | Required | Description |
| string | Yes | Message containing one or more Google URLs |
read_google_sheet
Read a specific Google Sheet with fine-grained options.
Parameter | Type | Required | Description |
| string | Yes | Google Sheets URL |
| string | No | Tab name (default: first tab) |
| string | No | Cell range, e.g. |
| boolean | No | Read all tabs |
Credentials
~/.mcp-google-reader/
├── oauth-config.json # Client ID & Secret (created during auth)
└── credentials.json # Access & refresh tokens (auto-managed)Security
Credentials stored with
600file permissions (owner read/write only)Tokens auto-refresh — no need to re-authorize
Read-only scopes:
documents.readonlyandspreadsheets.readonlyNo data sent anywhere except Google APIs
License
MIT
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.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/hongtien1310/mcp-google-reader'
If you have feedback or need assistance with the MCP directory API, please join our Discord server