Integration tool for Notion, Asana and Git workflows with MCP server support
Project description
NotionDev
Notion โ Asana โ Git Integration for Developers
Accelerate your development with AI context automatically loaded from your Notion specifications
NotionDev is designed for large projects that require focusing AI agents on precisely presented context to avoid code regressions. We implement a workflow with automatic context switching, based on your specifications. For this, we assume your application is organized into modules, and your modules into features. We also assume your modules and features are documented in two Notion databases.
NotionDev allows developers to automatically load the complete context of their features from Notion directly into AI coding assistants via AGENTS.md standard, while synchronizing with their assigned Asana tickets. They can then comment on Asana tickets, tag their code with implemented features, and reassign a ticket to the person who created it when work is completed.
NotionDev works in a multi-project environment: you can have multiple git projects locally, you can work on distinct features in each project.
โจ Features
- ๐ฏ Integrated workflow: Asana ticket + Notion documentation โ AI Context โ Code
- ๐ค Automatic AI Context: Direct export to AGENTS.md with complete specs
- ๐ Multi-project: Automatic detection of current project
- ๐ Traceability: Automatic headers in code to link functional โ technical
- ๐ Zero config per project: One global configuration for all your projects
๐ฏ Use Case
Before NotionDev:
# Manual and scattered workflow
1. Open Asana ticket
2. Search for documentation in Notion
3. Copy-paste specs into AI assistant
4. Code without complete context
5. Code doesn't directly reference implemented specifications
With NotionDev:
# Automated and integrated workflow
notion-dev work TASK-123456789
# โ Automatically loads entire context into AGENTS.md
# โ Ready to code with AI
# Generated code mentions implemented features
๐ Prerequisites
- Python 3.10+
- macOS
- API Access: Notion + Asana
- Notion Structure: "Modules" and "Features" databases with feature codes
Required Notion Structure
For NotionDev to work, your Notion workspace must contain 2 databases with the attributes below (case-sensitive):
"Modules" Database:
name(Title): Module namedescription(Text): Short descriptionstatus(Select): draft, review, validated, obsoleteapplication(Select): service, backend, frontendcode_prefix(Text): Feature code prefix (AU, DA, API...)repository_url(URL): GitHub repository URL - optional, for code cloningcode_path(Text): Path within repository - optionalbranch(Text): Git branch to clone - optional, defaults to default branch
"Features" Database:
code(Text): Unique code (AU01, DA02...) - requiredname(Title): Feature name - requiredstatus(Select): draft, review, validated, obsolete - requiredmodule(Relation): Link to parent module - required
๐ Installation
Install from PyPI
CLI only:
pip install notion-dev
CLI + MCP Server (for Claude Code, Cursor, etc.):
pip install 'notion-dev[mcp]'
Update
# Update to latest version
pip install --upgrade notion-dev
# Update with MCP support
pip install --upgrade 'notion-dev[mcp]'
# Check current version
notion-dev --version
Install from Source
# Clone the repository
git clone https://github.com/grand-shooting/NotionDev.git
cd NotionDev
# Install in development mode
pip install -e .
First Time Setup
After installation:
# Create configuration directory
mkdir -p ~/.notion-dev
# Copy the example configuration
# You'll need to edit this with your tokens
cat > ~/.notion-dev/config.yml << 'EOF'
notion:
token: "secret_YOUR_NOTION_TOKEN"
database_modules_id: "YOUR_MODULES_DB_ID"
database_features_id: "YOUR_FEATURES_DB_ID"
asana:
access_token: "YOUR_ASANA_TOKEN"
workspace_gid: "YOUR_WORKSPACE_ID"
user_gid: "YOUR_USER_ID"
EOF
Configuration
1. Get API Tokens
๐ Notion Token:
- Ask your Notion workspace administrator for the existing NotionDev integration token
- The token starts with
secret_ - Get the database IDs for modules and features from your admin
URL format:
notion.so/workspace/[DATABASE_ID]?v=...
Note: If you are the workspace admin and need to create a new integration, go to https://www.notion.so/my-integrations
๐ Asana Token:
- Go to https://app.asana.com/0/my-apps
- Create a "Personal Access Token"
- Copy the generated token
- Get your workspace ID
- Get your user account ID
๐ GitHub Token (Optional):
- Go to https://github.com/settings/tokens
- Generate a new token with
reposcope (for private repositories) - Copy the generated token
- This is only needed if you want to clone private repositories for code analysis
2. Configure config.yml
# Copy the template
cp ~/.notion-dev/config.example.yml ~/.notion-dev/config.yml
# Edit with your tokens
nano ~/.notion-dev/config.yml
notion:
token: "secret_YOUR_NOTION_TOKEN"
database_modules_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
database_features_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
asana:
access_token: "x/YOUR_ASANA_TOKEN"
workspace_gid: "1234567890123456"
user_gid: "1234567890123456"
# Optional: GitHub configuration for repository cloning
github:
token: "ghp_YOUR_GITHUB_TOKEN" # Optional, only for private repos
clone_dir: "/tmp/notiondev" # Where to clone repositories
shallow_clone: true # Use --depth 1 for faster cloning
3. Test Installation
# First test
notion-dev status
notion-dev tickets
MCP Server Configuration
If you installed with MCP support (pip install 'notion-dev[mcp]'), you can use NotionDev as an MCP server in AI coding assistants.
Claude Code
Add to your Claude Code MCP settings (~/.claude/claude_desktop_config.json or via Claude Code settings):
{
"mcpServers": {
"notiondev": {
"command": "notion-dev-mcp",
"args": []
}
}
}
Cursor
Add to your Cursor MCP settings (.cursor/mcp.json in your project or global settings):
{
"mcpServers": {
"notiondev": {
"command": "notion-dev-mcp",
"args": []
}
}
}
Claude.ai Web Interface (Remote MCP)
NotionDev can be used directly in Claude.ai via the remote MCP server:
- Go to Claude.ai Settings โ Integrations โ Add MCP Server
- Enter the server URL:
https://notiondev.grand-shooting.com/mcp - Click "Connect" to authorize
The remote server uses a no-auth mode with a default user, making it easy to deploy for teams.
For self-hosted deployments, you can add a secret URL prefix for security:
# Set a secret key on Fly.io
fly secrets set MCP_URL_SECRET_KEY=your-secret-uuid --app your-app
# Then use the URL: https://your-app.fly.dev/{secret}/mcp
Available MCP Tools
Once configured, the following tools are available in your AI assistant:
| Tool | Description |
|---|---|
notiondev_list_tickets |
List your Asana tickets |
notiondev_work_on_ticket |
Start working on a ticket (loads context to AGENTS.md) |
notiondev_add_comment |
Add a comment to current ticket |
notiondev_mark_done |
Mark ticket as done and reassign to creator |
notiondev_get_info |
Get current project info |
notiondev_list_projects |
List Asana projects in portfolio |
notiondev_create_ticket |
Create a new Asana ticket |
notiondev_update_ticket |
Update an existing Asana ticket |
notiondev_list_modules |
List Notion modules |
notiondev_get_module |
Get module details |
notiondev_list_features |
List features |
notiondev_get_feature |
Get feature details |
notiondev_create_module |
Create a new module in Notion |
notiondev_create_feature |
Create a new feature in Notion |
notiondev_update_module_content |
Update module documentation |
notiondev_update_feature_content |
Update feature documentation |
notiondev_clone_module |
Clone module's repository for code analysis |
notiondev_get_cloned_repo_info |
Get info about a cloned repository |
notiondev_cleanup_cloned_repos |
Remove all cloned repositories |
๐ Usage
Main Commands
# View current project info
notion-dev info [--json]
# List your assigned Asana tickets
notion-dev tickets [--json]
# Work on a specific ticket
notion-dev work TASK-123456789 [--yes] [--json]
# Get context for a feature (other than the one in the Asana ticket)
notion-dev context --feature AU01 [--yes]
# Record a comment on the ticket in Asana
notion-dev comment "This is a comment"
# Mark work as completed (reassigns to creator)
notion-dev done
# Interactive mode
notion-dev interactive
Asana Ticket Management
# List projects in portfolio
notion-dev projects [--json]
# Create a new ticket
notion-dev create-ticket --name "AU01 - Fix login" [--feature AU01] [--notes "..."] [--due 2025-02-01] [--project PROJECT_GID] [--json]
# Update an existing ticket
notion-dev update-ticket TASK_ID [--name "New name"] [--notes "..."] [--append] [--due 2025-02-01] [--assignee USER_GID] [--json]
Notion Module Commands
# List all modules
notion-dev modules [--json]
# Get module details (includes repository_url, branch, code_path)
notion-dev module ND [--json]
# Create a new module
notion-dev create-module --name "Auth" --description "Authentication" --prefix AUTH [--application Backend] [--content "..."] [--json]
# Update module documentation
notion-dev update-module ND --content "# New docs..." [--append] [--json]
Notion Feature Commands
# List all features (optionally filter by module)
notion-dev features [--module ND] [--json]
# Get feature details (includes parent module's repository info)
notion-dev feature ND01 [--json]
# Create a new feature (code auto-generated)
notion-dev create-feature --name "New Feature" --module ND [--content "..."] [--plan "free,premium"] [--rights "admin,user"] [--json]
# Update feature documentation
notion-dev update-feature ND01 --content "# Updated docs..." [--append] [--json]
JSON Output
All commands support --json output for scripting and MCP integration:
notion-dev tickets --json | jq '.tasks[0].feature_code'
notion-dev module ND --json | jq '.module.repository_url'
notion-dev feature ND01 --json | jq '.feature.module_repository_url'
Typical Developer Workflow
To understand the spirit of NotionDev, here's an example workflow. In this example, we assume documentation has been validated in Notion (Definition of Ready), and Asana tickets have been added to the current sprint, assigned to developers. We put ourselves in the developer's shoes.
๐ Morning - Choose Your Ticket
cd ~/projects/my-saas-frontend
notion-dev tickets
My Asana Tickets
โโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโ
โ ID โ Name โ Feature โ Status โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 23456789โ Implement Google SSO โ AU02 โ ๐ In progress โ
โ 34567890โ Dashboard analytics โ DA01 โ ๐ In progress โ
โโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโดโโโโโโโโโโโโโโ
๐ฏ Start Working
notion-dev work 23456789
๐ Asana Ticket
AU02 - Implement Google SSO
ID: 1234567890123456
Feature Code: AU02
Status: ๐ In progress
Project: my-saas-frontend
๐ฏ Feature
AU02 - SSO Google Login
Module: User Authentication
Status: validated
Plans: premium
User Rights: standard, admin
Export context to AGENTS.md? [Y/n]: y
โ
Context exported to /Users/dev/projects/my-saas-frontend/AGENTS.md
๐ก You can now open your AI coding assistant and start coding!
๐ป Develop with AI Assistant
# Open your AI coding assistant with loaded context
# (Claude Code, Cursor, VS Code Copilot, etc.)
code .
The AI context automatically contains:
- โ Complete specifications for feature AU02
- โ User Authentication module documentation
- โ Code standards with mandatory headers
- โ AI instructions adapted to the project
๐ Switch Projects
# Switch to another project - automatic detection
cd ~/projects/my-saas-api
notion-dev info
๐ Project: my-saas-api
Name: my-saas-api
Path: /Users/dev/projects/my-saas-api
Cache: /Users/dev/projects/my-saas-api/.notion-dev
Git Repository: โ
Yes
Traceability Headers
In the context loaded in the AGENTS.md file, NotionDev adds instructions for the AI agent to automatically insert a header in each project file with the feature code. The goal is to verify functional code coverage and avoid regressions since the AI agent has instructions not to modify code corresponding to a feature other than the one being worked on.
/**
* NOTION FEATURES: AU02
* MODULES: User Authentication
* DESCRIPTION: Google OAuth authentication service
* LAST_SYNC: 2025-01-15
*/
export class GoogleAuthService {
// Implementation...
}
๐๏ธ Architecture
Automatic Multi-project
NotionDev automatically detects the project from the current directory:
~/projects/
โโโ saas-frontend/ # notion-dev โ Context "saas-frontend"
โ โโโ .notion-dev/ # Isolated cache
โโโ saas-api/ # notion-dev โ Context "saas-api"
โ โโโ .notion-dev/ # Isolated cache
โโโ saas-admin/ # notion-dev โ Context "saas-admin"
โโโ .notion-dev/ # Isolated cache
โ๏ธ Advanced Configuration
Context Size Management
The context_max_length parameter controls the maximum size of the AGENTS.md file to ensure compatibility with your AI model's context window:
ai:
# For Claude Opus/Sonnet (recommended)
context_max_length: 100000 # ~100KB
# For GPT-3.5 (more limited)
context_max_length: 32000 # ~32KB
How it works:
- Default: 100,000 characters
- If content exceeds the limit, it's intelligently truncated
- Priority is given to critical sections (headers, rules, project context)
- Documentation is truncated first if needed
- A message
[Content truncated to fit context limits]is added when truncation occurs
Checking truncation:
After running notion-dev work, check the logs:
AGENTS.md created: 45000 chars # Normal
AGENTS.md created: 100000 chars (truncated from 125000) # Truncated
Language Configuration
NotionDev enforces English for all code and comments, regardless of documentation language:
- Documentation: Can be in any language (French, English, etc.)
- Generated code: Always in English
- Comments: Always in English
- Variable/function names: Always in English
This is automatically enforced through the AGENTS.md file.
Custom Shell Aliases
# In ~/.zshrc or ~/.bash_profile
alias nd="notion-dev"
alias ndt="notion-dev tickets"
alias ndw="notion-dev work"
alias ndi="notion-dev info"
๐ง Troubleshooting
Common Errors
โ "Invalid configuration"
# Check tokens
notion-dev info
# Retest config
~/notion-dev-install/test_config.sh
Debug Logs
NotionDev uses rotating logs to prevent disk space issues:
# View detailed logs
tail -f ~/.notion-dev/notion-dev.log
# Debug with verbose level
export NOTION_DEV_LOG_LEVEL=DEBUG
notion-dev tickets
Log rotation:
- Maximum file size: 10MB
- Keeps 5 backup files (notion-dev.log.1 through .5)
- Automatic rotation when size limit is reached
- Logs location:
~/.notion-dev/notion-dev.log
๐ค Contributing
Local Development
# Clone and install in development mode
git clone https://github.com/your-org/notion-dev.git
cd notion-dev
python -m venv venv
source venv/bin/activate
pip install -e .
Project Structure
notion-dev/
โโโ notion_dev/
โ โโโ __init__.py # Package init with embedded setup.py
โ โโโ cli/
โ โ โโโ main.py # Click CLI commands and Rich UI
โ โโโ core/ # Business logic
โ โ โโโ asana_client.py # Asana API client (requests)
โ โ โโโ config.py # YAML config with dataclasses
โ โ โโโ context_builder.py # AI context generator (AGENTS.md)
โ โ โโโ github_client.py # GitHub repo cloning
โ โ โโโ models.py # Data models (Module, Feature, AsanaTask)
โ โ โโโ notion_client.py # Notion API client (SDK)
โ โโโ mcp_server/
โ โโโ server.py # MCP server (FastMCP) - wraps CLI commands
โโโ tests/
โ โโโ unit/ # Unit tests
โโโ install_notion_dev.sh # Installation script
โโโ README.md
๐ Changelog
v2.0.0 (2026-01-17)
- โ Remote MCP Server for Claude.ai - Full integration with Claude.ai web interface
- โ No-auth mode - MCP server can run without OAuth for simplified deployment
- โ URL Secret Key - Optional endpoint obscurity with secret URL prefix
- โ Streamable HTTP transport - New recommended transport (replaces deprecated SSE)
- โ Deployed on Fly.io (notiondev-prod.fly.dev)
v1.4.0 (2025-12-30)
- โ Refactored MCP server to use CLI commands exclusively (single source of truth)
- โ
Added
--jsonoutput toworkcommand for MCP integration - โ
Added
module_repository_url,module_branch,module_code_pathto feature command output
v1.3.0 (2025-12-26)
- โ Added GitHub integration for module repository cloning
- โ
New MCP tools:
clone_module,get_cloned_repo_info,cleanup_cloned_repos - โ
Added
repository_url,branch,code_pathfields to Module model - โ
Added
notiondev_list_projectsMCP tool
v1.2.0 (2025-12-25)
- โ
Added Notion CRUD commands:
modules,module,features,feature - โ
Added
create-module,create-feature,update-module,update-featurecommands - โ
Added
--projectoption tocreate-ticketcommand - โ
Added
--jsonoutput to all new commands
v1.1.0 (2025-12-20)
- โ
Added MCP server support (
notion-dev[mcp]) - โ FastMCP integration with 19 tools available
- โ Full Asana ticket management via MCP
v1.0.3 (2025-01-28)
- โ
Added JSON output support for
ticketsandinfocommands - โ
Published to PyPI as
notion-dev - โ Added automated release workflow
v1.0.0 (2025-01-26)
- โ Initial release
- โ Automatic multi-project support
- โ Notion + Asana + AI assistant integration
- โ Automatic traceability headers
- โ Asana API 5.2.0 compatible client
๐ License
MIT License - see LICENSE for details.
๐ฌ Support
- Issues: GitHub Issues
- Documentation: Wiki
- Discussions: GitHub Discussions
Developed with โค๏ธ to accelerate AI-assisted development
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file notion_dev-2.1.3.tar.gz.
File metadata
- Download URL: notion_dev-2.1.3.tar.gz
- Upload date:
- Size: 111.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
557d828cd15b2c406cf897d899df714c64adbb1143812b96a1a217cc980c5102
|
|
| MD5 |
967bdb96c6b1e3deec38078dfdbd2b0a
|
|
| BLAKE2b-256 |
a806c0059786cd7f6db560d247e6de9807ffe67176b496813091c3aa00a2e090
|
File details
Details for the file notion_dev-2.1.3-py3-none-any.whl.
File metadata
- Download URL: notion_dev-2.1.3-py3-none-any.whl
- Upload date:
- Size: 95.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ae8b303df60c291bb44c0c5128944f2f68e3bdb350e7689036b5b59723b8e3f
|
|
| MD5 |
31f498e8f51453ff7e83d4c23fb24515
|
|
| BLAKE2b-256 |
7b10a882bd8875416724f6e5cea1511d540c30e61148ca84bed3774cb4944b53
|