| name | cloud-auth |
| description | Flow Nexus authentication and user management. Use for login, registration, session management, password reset, and user account operations. |
| version | 1.0.0 |
| category | cloud |
| type | skill |
| capabilities | ["user_registration","user_login","session_management","password_management","profile_management","email_verification"] |
| tools | ["mcp__flow-nexus__auth_status","mcp__flow-nexus__auth_init","mcp__flow-nexus__user_register","mcp__flow-nexus__user_login","mcp__flow-nexus__user_logout","mcp__flow-nexus__user_profile","mcp__flow-nexus__user_update_profile","mcp__flow-nexus__user_reset_password","mcp__flow-nexus__user_update_password","mcp__flow-nexus__user_verify_email","mcp__flow-nexus__user_upgrade","mcp__flow-nexus__user_stats"] |
| related_skills | ["cloud-user-tools","cloud-payments"] |
Cloud Authentication
Handle Flow Nexus user authentication, registration, session management, and account operations.
Quick Start
await mcp__flow-nexus__user_register({
email: "user@example.com",
password: "secure_password",
full_name: "User Name"
});
const session = await mcp__flow-nexus__user_login({
email: "user@example.com",
password: "secure_password"
});
const status = await mcp__flow-nexus__auth_status({ detailed: true });
await mcp__flow-nexus__user_logout();
When to Use
- Registering new users on Flow Nexus platform
- Logging in existing users and managing sessions
- Resetting forgotten passwords
- Verifying email addresses
- Updating user profiles and account settings
- Upgrading user subscription tiers
- Troubleshooting authentication issues
Prerequisites
- MCP server
flow-nexus configured
- Valid email address for registration
- Secure password meeting requirements
Core Concepts
Authentication Flow
Register → Verify Email → Login → Session Active → Logout
↑ ↓
Reset Password ←────── Forgot Password
User Tiers