You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quick-start.mdx
+10-71Lines changed: 10 additions & 71 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,54 +43,12 @@ By the end of this guide, you'll have:
43
43
<Step>
44
44
**Explore Your Dashboard**
45
45
46
-
Once logged in, you'll see:
47
-
- **Teams**: Your personal default team (automatically created)
48
-
- **MCP Catalog**: Browse available MCP servers
49
-
- **Team Settings**: Manage your team and credentials
46
+
Once logged in, you'll see preinstalled MCP servers in your dashboard.
47
+
We have preinstalled popular MCP servers like Sequential Thinking. You can add more whenever you want to.
50
48
</Step>
51
49
</Steps>
52
50
53
-
## Step 2: Configure Your First MCP Server
54
-
55
-
Let's set up a popular MCP server to get you started quickly.
56
-
57
-
<Steps>
58
-
<Step>
59
-
**Browse the MCP Catalog**
60
-
61
-
1. Navigate to the **MCP Catalog** in your dashboard
62
-
2. Browse available MCP servers (GitHub, BrightData, Weather, etc.)
63
-
3. Click on a server that interests you to see its details
64
-
</Step>
65
-
66
-
<Step>
67
-
**Add an MCP Server to Your Team**
68
-
69
-
For this example, let's add the GitHub MCP server:
70
-
71
-
1. Find "GitHub MCP Server" in the catalog
72
-
2. Click **"Add to Team"**
73
-
3. Select your default team
74
-
4. You'll be prompted to add credentials
75
-
</Step>
76
-
77
-
<Step>
78
-
**Configure Credentials**
79
-
80
-
Add your GitHub token securely:
81
-
82
-
1. **Create a GitHub Token**: Go to [GitHub Settings > Personal Access Tokens](https://github.com/settings/tokens)
83
-
2. **Generate a new token** with appropriate permissions
84
-
3. **Add to DeployStack**: Paste the token in the credentials field
85
-
4. **Save**: Your credentials are encrypted and stored securely
86
-
</Step>
87
-
</Steps>
88
-
89
-
<Callouttype="info">
90
-
**Security Note**: Your credentials are encrypted and never exposed to your local environment. The DeployStack Gateway injects them securely at runtime.
91
-
</Callout>
92
-
93
-
## Step 3: Install and Configure the Gateway
51
+
## Step 2: Install and Configure the Gateway
94
52
95
53
The DeployStack Gateway runs locally and connects your development tools to your team's MCP servers.
96
54
@@ -103,12 +61,6 @@ The DeployStack Gateway runs locally and connects your development tools to your
103
61
```bash
104
62
npm install -g @deploystack/gateway
105
63
```
106
-
107
-
Verify the installation:
108
-
109
-
```bash
110
-
deploystack --version
111
-
```
112
64
</Step>
113
65
114
66
<Step>
@@ -124,21 +76,8 @@ The DeployStack Gateway runs locally and connects your development tools to your
124
76
- Open a browser window for authentication
125
77
- Download your team's MCP server configurations
126
78
- Set up secure credential access
127
-
</Step>
128
-
129
-
<Step>
130
-
**Start the Gateway**
131
-
132
-
Start the gateway to begin using your MCP servers:
133
-
134
-
```bash
135
-
deploystack start
136
-
```
137
-
138
-
The gateway will:
139
-
- Start all your configured MCP servers as background processes
140
-
- Expose them at `http://localhost:9095/sse`
141
-
- Inject credentials securely without exposing them to you
79
+
80
+
Login command will pull your MCP configurations and credentials from the cloud.deploystack.io and start the DeployStack gateway.
142
81
</Step>
143
82
144
83
<Step>
@@ -157,7 +96,7 @@ The DeployStack Gateway runs locally and connects your development tools to your
157
96
</Step>
158
97
</Steps>
159
98
160
-
## Step 4: Connect Your Development Environment
99
+
## Step 3: Connect Your Development Environment
161
100
162
101
Now connect VS Code or Cursor to use your team's MCP servers.
163
102
@@ -170,6 +109,7 @@ Now connect VS Code or Cursor to use your team's MCP servers.
170
109
**Location**: `.vscode/settings.json` or global VS Code settings
171
110
172
111
**Before** (manual MCP server management):
112
+
173
113
```json
174
114
{
175
115
"mcpServers": {
@@ -185,6 +125,7 @@ Now connect VS Code or Cursor to use your team's MCP servers.
185
125
```
186
126
187
127
**After** (DeployStack Gateway):
128
+
188
129
```json
189
130
{
190
131
"mcpServers": {
@@ -208,7 +149,7 @@ Now connect VS Code or Cursor to use your team's MCP servers.
208
149
</Step>
209
150
</Steps>
210
151
211
-
## Step 5: Explore Your Setup
152
+
## Step 4: Explore Your Setup
212
153
213
154
Now that everything is connected, explore what you can do:
214
155
@@ -242,8 +183,6 @@ Now that everything is connected, explore what you can do:
242
183
243
184
Back in the [DeployStack dashboard](https://cloud.deploystack.io):
0 commit comments