moai-domain-notion
About
This enterprise Notion integration skill provides comprehensive workspace management and database operations through MCP server architecture. It enables developers to automate content management, page creation, and data operations within Notion workspaces. Use this skill when building Claude-powered applications that require advanced Notion API integration and enterprise-grade automation capabilities.
Quick Install
Claude Code
Recommended/plugin add https://github.com/modu-ai/moai-adkgit clone https://github.com/modu-ai/moai-adk.git ~/.claude/skills/moai-domain-notionCopy and paste this command in Claude Code to install this skill
Documentation
Enterprise Notion Integration v4.0.0
π Advanced Notion Workspace Management & Database Operations
Version: 4.0.0 (Enterprise v4.0 Optimized) Status: Production Ready Coverage: Complete Notion API integration with MCP support
π Overview
Enterprise-grade Notion integration providing comprehensive workspace management, database operations, page creation, and content management capabilities through the MCP (Model Context Protocol) server architecture.
Core Capabilities:
- β Notion workspace management and automation
- β Database schema design and optimization
- β Page creation, updates, and bulk operations
- β MCP server integration for seamless API access
- β Complex query operations and filtering
- β Rich content management with markdown support
- β Access control and permission management
- β Performance optimization and caching
π― Level 1: Quick Reference
Primary Use Cases
Use This Skill When:
- β Creating or managing Notion databases programmatically
- β Automating page creation, updates, and deletions
- β Building MCP-integrated Notion workflows
- β Performing bulk database operations
- β Designing complex Notion workspace automation
- β Integrating Notion with external systems
- β Managing content at scale
Quick Invocation:
Skill("moai-domain-notion")
Essential Operations
# Database operations
- Create databases with custom schemas
- Query databases with complex filters
- Update database properties and structure
# Page operations
- Create pages with rich content
- Update page properties and blocks
- Bulk operations on multiple pages
# Content management
- Manage rich text and markdown content
- Handle inline files and media
- Organize pages with hierarchical structures
# Workspace management
- Manage user access and permissions
- Configure workspace settings
- Monitor API usage and quotas
π§ Level 2: Implementation Guide
Core Database Operations
1. Create Database with Custom Schema:
# Define database properties
properties = {
"Title": {"type": "title"},
"Status": {"type": "select", "options": [...]}
"Date": {"type": "date"},
"Owner": {"type": "people"}
}
# Create database in workspace
database = create_notion_database(
parent_page_id="...",
title="My Database",
properties=properties
)
2. Query with Filters:
# Complex query operations
results = query_database(
database_id="...",
filter={
"and": [
{"property": "Status", "select": {"equals": "Active"}},
{"property": "Date", "date": {"after": "2025-01-01"}}
]
},
sorts=[
{"property": "Date", "direction": "descending"}
]
)
3. Bulk Update Operations:
# Update multiple pages efficiently
update_pages_batch(
page_ids=[...],
updates={
"Status": "Completed",
"Date": "2025-11-13"
}
)
Page Management Patterns
1. Create Rich Content Pages:
# Create page with markdown content
page = create_notion_page(
parent={"database_id": "..."},
properties={"Title": "My Page"},
content="""
# Heading
Rich **markdown** content with formatting
- Bullet points
- Organized structure
"""
)
2. Hierarchical Page Organization:
# Create organized page structure
parent = create_notion_page(title="Parent Page")
child1 = create_notion_page(parent=parent, title="Child 1")
child2 = create_notion_page(parent=parent, title="Child 2")
Advanced Integration Patterns
1. Sync External Data to Notion:
# Automated synchronization
for item in external_data:
create_notion_page(
parent={"database_id": "..."},
properties={
"Title": item.name,
"URL": item.link,
"Status": "Synced",
"Date": datetime.now()
}
)
2. Multi-Database Relationships:
# Link pages across databases
create_relation(
from_page_id="...",
to_page_id="...",
relation_property="Related Items"
)
π‘ Level 3: Advanced Patterns
Enterprise Integration Scenarios
1. Workspace-Scale Automation:
- Bulk import external data sources
- Synchronize multiple databases
- Manage complex permission hierarchies
- Monitor and optimize database performance
2. MCP Server Optimization:
- Connection pooling for high-volume operations
- Batch API calls for efficiency
- Error handling and retry strategies
- Rate limit management
3. Content Management at Scale:
- Template-based page creation
- Automated content curation
- Archive and cleanup workflows
- Version control and history tracking
Production Patterns
# Error handling and retry logic
try:
result = notion_operation()
except RateLimitError:
wait_with_backoff()
retry()
# Batch operations for performance
operations = [page1_update, page2_update, page3_update]
execute_batch(operations, batch_size=10)
# Monitoring and logging
log_operation(
operation="create_page",
duration=elapsed_time,
status="success",
record_count=count
)
π οΈ Tools & Integration
Required Tools
- Task: Orchestrate complex Notion workflows
- Read: Fetch Notion data and content
- Bash: Execute Notion CLI commands
- WebFetch: Retrieve external data for sync
MCP Integration
# Direct MCP usage
mcp__notion__notion-create-pages(...)
mcp__notion__notion-update-page(...)
mcp__notion__notion-search(...)
Related Skills
Skill("moai-mcp-notion-integrator")- Advanced MCP optimizationSkill("moai-domain-database")- Database design patternsSkill("moai-cc-mcp-plugins")- MCP plugin architectureSkill("moai-baas-foundation")- Backend integration patterns
π Capabilities Matrix
| Capability | Level | Performance | Use Case |
|---|---|---|---|
| Page Creation | Standard | <100ms per page | Bulk content generation |
| Database Query | Advanced | <500ms | Complex filtering |
| Bulk Updates | Enterprise | <1s per 100 pages | Batch operations |
| Rich Content | Standard | Variable | Formatted documentation |
| Relationships | Advanced | <200ms | Cross-database linking |
| Automation | Enterprise | Real-time | Workflow integration |
π― Success Metrics
Performance Indicators:
- β Sub-100ms page creation latency
- β 99%+ operation success rate
- β <5% API error rate
- β Support for 10K+ page operations
Enterprise Features:
- β Workspace-scale automation
- β Multi-database coordination
- β Advanced access control
- β Audit logging and compliance
Quality Standards:
- β Production-ready error handling
- β Comprehensive logging
- β Performance optimization
- β Security best practices
π Additional Resources
Learning Path:
- Start with simple page creation
- Progress to database operations
- Master complex queries and filters
- Implement workspace automation
- Optimize for production scale
Documentation:
- Notion API Reference - Official Notion API documentation
- MCP Integration Guide - MCP server patterns
- Best Practices - Enterprise implementation guide
Support:
- Check MCP documentation for latest API updates
- Review error logs for detailed diagnostics
- Consult performance guidelines for optimization
- Reference security documentation for access control
Version: 4.0.0 | Status: Production Ready | Last Updated: 2025-11-13
GitHub Repository
Related Skills
sglang
MetaSGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.
evaluating-llms-harness
TestingThis Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.
content-collections
MetaThis skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.
llamaguard
OtherLlamaGuard is Meta's 7-8B parameter model for moderating LLM inputs and outputs across six safety categories like violence and hate speech. It offers 94-95% accuracy and can be deployed using vLLM, Hugging Face, or Amazon SageMaker. Use this skill to easily integrate content filtering and safety guardrails into your AI applications.
