cat > ai-orchestrator/requirements.txt << 'EOF' fastapi>=0.115.5 uvicorn>=0.32.1 google-generativeai>=0.8.3 langchain>=0.3.26 openai>=1.91.0 anthropic>=0.55.0 python-dotenv>=1.0.1 pydantic>=2.10.3 pillow>=11.0.0 httpx>=0.28.1 EOF
cat > health-analytics/requirements.txt << 'EOF' fastapi>=0.115.13 uvicorn>=0.34.3 pydantic>=2.11.7 python-dotenv>=1.1.1 httpx>=0.28.1 EOF
cat > smart-calendar/requirements.txt << 'EOF' fastapi>=0.115.13 uvicorn>=0.34.3 google-api-python-client>=2.173.0 google-auth-httplib2>=0.2.0 google-auth-oauthlib>=1.2.2 pydantic>=2.11.7 python-dotenv>=1.1.1 httpx>=0.28.1 EOF
cat > mcp-server/package.json << 'EOF' { "name": "mcp-server", "version": "1.0.0", "description": "Model Context Protocol Server", "main": "index.js", "scripts": { "start": "node index.js", "dev": "nodemon index.js" }, "dependencies": { "@modelcontextprotocol/sdk": "latest", "@google/generative-ai": "latest", "express": "latest", "cors": "latest", "dotenv": "latest", "zod": "latest" }, "devDependencies": { "nodemon": "latest" } } EOF