Quickstart Guide
Get Nexus up and running in 5 minutes
1
Create Your Account
Sign up for a free Nexus account using Google or GitHub OAuth.
Sign Up Free2
Get Your API Token
After signing in, go to your dashboard and copy your API token from the settings.
Dashboard → Settings → API Token → Copy
3
Configure Your IDE
For Cursor IDE
Add this configuration to your Cursor settings:
{
"mcpServers": {
"nexus": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-fetch"],
"env": {
"MCP_SERVER_URL": "https://nexus-worker.nandawinartha1.workers.dev/mcp",
"NEXUS_TOKEN": "YOUR_TOKEN_HERE"
}
}
}
}Location: Cursor → Settings → Features → MCP Servers
For Windsurf IDE
Add this configuration to your Windsurf settings:
{
"mcp": {
"servers": {
"nexus": {
"url": "https://nexus-worker.nandawinartha1.workers.dev/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
}
}
}
}
}Location: Windsurf → Settings → MCP Configuration
4
Add MCP Server Credentials
Go to your Nexus dashboard and add credentials for the MCP servers you want to use:
- Stripe: Add your Stripe API key
- Supabase: Add your Supabase URL and key
- GitHub: Add your GitHub personal access token
- Vercel: Add your Vercel API token
✓
You're All Set!
Start using Nexus in your IDE! Try creating your first orchestration session:
"Deploy a Next.js app to Vercel with Supabase database"
Nexus will automatically orchestrate the required MCP servers and execute the steps for you.