Migrated from design-system-swarm with fresh git history.
Old project history preserved in /home/overbits/apps/design-system-swarm
Core components:
- MCP Server (Python FastAPI with mcp 1.23.1)
- Claude Plugin (agents, commands, skills, strategies, hooks, core)
- DSS Backend (dss-mvp1 - token translation, Figma sync)
- Admin UI (Node.js/React)
- Server (Node.js/Express)
- Storybook integration (dss-mvp1/.storybook)
Self-contained configuration:
- All paths relative or use DSS_BASE_PATH=/home/overbits/dss
- PYTHONPATH configured for dss-mvp1 and dss-claude-plugin
- .env file with all configuration
- Claude plugin uses ${CLAUDE_PLUGIN_ROOT} for portability
Migration completed: $(date)
🤖 Clean migration with full functionality preserved
37 lines
500 B
Plaintext
37 lines
500 B
Plaintext
# MCP Server Dependencies
|
|
# Model Context Protocol
|
|
mcp>=0.9.0
|
|
|
|
# Anthropic SDK
|
|
anthropic>=0.40.0
|
|
|
|
# FastAPI & SSE
|
|
fastapi>=0.104.0
|
|
sse-starlette>=1.8.0
|
|
uvicorn[standard]>=0.24.0
|
|
|
|
# HTTP Client
|
|
httpx>=0.25.0
|
|
aiohttp>=3.9.0
|
|
|
|
# Atlassian Integrations
|
|
atlassian-python-api>=3.41.0
|
|
|
|
# Encryption
|
|
cryptography>=42.0.0
|
|
|
|
# Async Task Queue (for worker pool)
|
|
celery[redis]>=5.3.0
|
|
|
|
# Caching
|
|
redis>=5.0.0
|
|
|
|
# Environment Variables
|
|
python-dotenv>=1.0.0
|
|
|
|
# Database
|
|
aiosqlite>=0.19.0
|
|
|
|
# Logging
|
|
structlog>=23.2.0
|