Files
pocketpaw/docs/integrations/google-docs.mdx
Prakash 57b807c117 docs(seo): optimize titles, descriptions, headings, and cross-links
Comprehensive SEO optimization across 80 documentation pages:

Title optimization (all pages):
- Replaced generic titles like "Architecture", "Discord", "Slack"
  with search-intent titles like "PocketPaw Architecture: Event-Driven
  Message Bus", "Discord Bot Setup: Add PocketPaw to Your Server"
- All titles now 50-70 characters with qualifying keywords

Meta descriptions:
- Expanded 7 short descriptions (under 145 chars) to 150-160 chars
- Roadmap description expanded from 76 to 196 chars
- Troubleshooting, Codex CLI, OpenCode, WebMCP all expanded

H1 heading fixes:
- Ensured single H1 per page matching the frontmatter title
- All H1 headings updated to match new optimized titles

Internal cross-links:
- Added Related CardGroup sections to 60+ individual pages
- Each links to 2-3 related pages within and across sections
- Channels link to channel guides, backends link to Ollama guide, etc.

Em dash cleanup:
- Replaced em dashes with colons, periods, or double hyphens
  across multiple files in tools/, channels/, integrations/

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 17:41:36 +05:30

71 lines
2.0 KiB
Plaintext

---
title: "Google Docs: Read & Write Documents with AI"
description: "Read, create, and search Google Docs with PocketPaw. Extract document content as plain text, create new documents with formatted content, and search across your Docs library by title or content."
section: Integrations
ogType: article
keywords: ["google docs", "document management", "docs api", "document creation", "text extraction"]
tags: ["integrations", "docs", "google"]
---
# Google Docs: Read & Write Documents with AI
PocketPaw can interact with Google Docs for reading, creating, and searching documents.
## Setup
1. Set up [Google OAuth](/integrations/oauth) credentials
2. Enable the Google Docs API in your Google Cloud project
3. Authorize PocketPaw to access your Docs
## Tools
### gdocs_read
Read the content of a Google Doc:
```
User: Read the meeting notes from last week
Agent: [uses gdocs_read] → Meeting Notes - Jan 15:
- Discussed project timeline
- Assigned tasks to team members
- Next meeting scheduled for Jan 22
```
### gdocs_create
Create a new Google Doc:
```
User: Create a new document called "Sprint Planning" with today's agenda
Agent: [uses gdocs_create] → Created "Sprint Planning" document
```
### gdocs_search
Search for documents by title or content:
```
User: Find all docs about the budget
Agent: [uses gdocs_search] → Found 2 documents:
1. "Q1 Budget Review" (last modified Jan 10)
2. "Budget Proposal 2024" (last modified Dec 15)
```
## Policy Group
All Docs tools belong to `group:docs`.
## Related
<CardGroup>
<Card title="Google Drive" icon="lucide:hard-drive" href="/integrations/google-drive">
List, download, upload, and share files in Google Drive.
</Card>
<Card title="Google Calendar" icon="lucide:calendar" href="/integrations/calendar">
List, create, and search calendar events with natural language.
</Card>
<Card title="OAuth Framework" icon="lucide:key" href="/integrations/oauth">
How PocketPaw handles Google OAuth tokens and refresh flows.
</Card>
</CardGroup>