Update README and gitignore for new document tools
Some checks are pending
Test Dashboard / test-and-dashboard (push) Waiting to run

- Add 7 new Word tools to README (outline, search, entities, etc.)
- Add 9 MCP prompts section with workflow descriptions
- Gitignore reading progress bookmark files (.*.reading_progress.json)
- Gitignore local .mcp.json and test documents
This commit is contained in:
Ryan Malloy 2026-01-11 07:41:49 -07:00
parent 4b38f6455c
commit 11defb4eae
2 changed files with 32 additions and 1 deletions

8
.gitignore vendored
View File

@ -80,4 +80,10 @@ tmp/
*.temp *.temp
# Test documents (personal/private) # Test documents (personal/private)
ORIGINAL - The Other Side of the Bed*.docx.mcp.json ORIGINAL - The Other Side of the Bed*.docx
# Reading progress bookmarks (user-specific)
.*.reading_progress.json
# Local MCP config
.mcp.json

View File

@ -83,6 +83,13 @@ claude mcp add office-tools "uvx mcp-office-tools"
| `convert_to_markdown` | Convert to Markdown with automatic pagination for large docs | | `convert_to_markdown` | Convert to Markdown with automatic pagination for large docs |
| `extract_word_tables` | Extract tables as structured JSON, CSV, or Markdown | | `extract_word_tables` | Extract tables as structured JSON, CSV, or Markdown |
| `analyze_word_structure` | Analyze headings, sections, styles, and document hierarchy | | `analyze_word_structure` | Analyze headings, sections, styles, and document hierarchy |
| `get_document_outline` | Get structured outline with chapter detection and word counts |
| `check_style_consistency` | Find formatting issues, missing chapters, style problems |
| `search_document` | Search text with context and chapter location |
| `extract_entities` | Extract people, places, organizations using pattern recognition |
| `get_chapter_summaries` | Generate chapter previews with opening sentences |
| `save_reading_progress` | Bookmark your reading position for later |
| `get_reading_progress` | Resume reading from saved position |
### Excel Tools ### Excel Tools
@ -117,6 +124,24 @@ Here's what works and what's "good enough" — legacy formats from Office 97-200
--- ---
## 🎯 MCP Prompts
Pre-built workflows that chain multiple tools together. Use these as starting points:
| Prompt | Level | Description |
|--------|-------|-------------|
| `explore-document` | Basic | Start with any new document - get structure and identify issues |
| `find-character` | Basic | Track all mentions of a person/character with context |
| `chapter-preview` | Basic | Quick overview of each chapter without full read |
| `resume-reading` | Intermediate | Check saved position and continue reading |
| `document-analysis` | Intermediate | Comprehensive multi-tool analysis |
| `character-journey` | Advanced | Track character arc through entire narrative |
| `document-comparison` | Advanced | Compare entities and themes between chapters |
| `full-reading-session` | Advanced | Guided reading with bookmarking |
| `manuscript-review` | Advanced | Complete editorial workflow for editors |
---
## 💡 Usage Examples ## 💡 Usage Examples
### Extract Text from Any Document ### Extract Text from Any Document