Purpose
Use this MCP to:- Create new documents with templates
- Read document content
- Update existing documents
- List your recent documents
- Generate meeting notes and specs
Setup
Set up Google Cloud project
- Go to Google Cloud Console
- Create a new project or select an existing one
- Enable the Google Docs API and Google Drive API
Create OAuth credentials
- Go to APIs & Services → Credentials
- Click Create Credentials → OAuth client ID
- Choose Desktop application
- Download the credentials JSON file
- Save it as
client_secret.jsonin your MCP server directory
Available tools
create_document
Create a new Google Doc.read_document
Read the content of an existing document.update_document
Update the content of an existing document.list_documents
List your recent Google Docs.Usage examples
Create meeting notes
Generate technical spec
Read and summarize
Common workflows
Daily standup flow
- Create Google Doc with standup template
- Include date, participants, and agenda
- Share link in #standup Slack channel
- Team fills in updates during the meeting
Product spec flow
- Query ClickUp for initiative and epic details
- Create Google Doc with spec template
- Include context, requirements, and success criteria
- Link doc in ClickUp epic
- Share for team review
Meeting notes from Granola
- Get meeting transcript from Granola
- Extract action items and decisions
- Create formatted Google Doc
- Share with attendees in Slack
Document templates
Claudio uses these common templates:Daily standup
Technical spec
Best practices
Use descriptive titles
Use descriptive titles
Include dates and topics in document titles for easy searching. For example:
Daily Standup - 2026-02-28 or Sales Agent Tech Spec - Q1 2026.Link from ClickUp
Link from ClickUp
Add Google Doc URLs to ClickUp epics and user stories so all context is accessible from one place.
Share links, not content
Share links, not content
Use folders for organization
Use folders for organization
Create folders in Google Drive for different types of docs (Meetings, Specs, Reports) and move docs there after creation.
Troubleshooting
Authentication failed
Authentication failed
If the OAuth token expires:
- Delete the stored token file (usually
token.json) - Restart the MCP server
- Re-authorize when prompted
Document not found
Document not found
Verify:
- The document ID is correct
- You have access to the document
- The document hasn’t been deleted
Permission denied
Permission denied
Make sure the Google Docs API and Google Drive API are enabled in your Google Cloud project.
Server won't start
Server won't start
Check that:
- You’ve run
npm installandnpm run build - The
client_secret.jsonfile exists - The path in your MCP config is correct