# Notion > MCP tool documentation for saving migration planning and monitoring reports ## Available Commands - `notion-create-pages` - Create new pages in the SEO Audit Log database - `notion-update-page` - Update existing audit entries - `notion-query-database-view` - Query existing reports - `notion-search` - Search across Notion workspace ## Configuration - Database ID: `2c8581e5-8a1e-8035-880b-e38cefc2f3ef` - All reports saved with Category: "SEO Migration" - Audit ID format: MIGR-YYYYMMDD-NNN ## Examples ``` # Create migration planning report mcp__notion__notion-create-pages( database_id="2c8581e5-8a1e-8035-880b-e38cefc2f3ef", properties={ "Issue": {"title": [{"text": {"content": "사이트 이전 계획 - example.com - 2025-01-15"}}]}, "Site": {"url": "https://example.com"}, "Category": {"select": {"name": "SEO Migration"}}, "Priority": {"select": {"name": "High"}}, "Found Date": {"date": {"start": "2025-01-15"}}, "Audit ID": {"rich_text": [{"text": {"content": "MIGR-20250115-001"}}]} } ) # Create post-migration monitoring report mcp__notion__notion-create-pages( database_id="2c8581e5-8a1e-8035-880b-e38cefc2f3ef", properties={ "Issue": {"title": [{"text": {"content": "이전 모니터링 보고서 - new-example.com - 2025-02-01"}}]}, "Site": {"url": "https://new-example.com"}, "Category": {"select": {"name": "SEO Migration"}}, "Priority": {"select": {"name": "Critical"}}, "Found Date": {"date": {"start": "2025-02-01"}}, "Audit ID": {"rich_text": [{"text": {"content": "MIGR-20250201-001"}}]} } ) ```