11# Setup Guide
22
3- This guide is for users who want ChatGPT or another MCP host to work in local
4- projects through DevSpace .
3+ This guide covers both remote MCP hosts and local coding harnesses using
4+ DevSpace in local projects .
55
66## Requirements
77
88- Node ` >=22.19 <27 `
99- npm
1010- Git
1111- Bash, including Git Bash or WSL on Windows
12- - a public HTTPS URL that forwards to the local DevSpace server
12+ - a public HTTPS URL that forwards to the local DevSpace server, only when a
13+ remote MCP host will connect
1314
14- DevSpace does not create the public tunnel for you. Use Cloudflare Tunnel,
15- ngrok, Pinggy, Tailscale Funnel, or your own HTTPS reverse proxy.
15+ DevSpace does not create the public tunnel for you. Remote MCP users can use
16+ Cloudflare Tunnel, ngrok, Pinggy, Tailscale Funnel, or their own HTTPS reverse
17+ proxy.
1618
1719## Install And Configure
1820
@@ -53,7 +55,26 @@ The local MCP URL is:
5355http://127.0.0.1:7676/mcp
5456```
5557
56- ### Public Base URL
58+ ### Usage And Subagents
59+
60+ Setup asks independently whether a remote MCP host will connect and whether a
61+ local coding harness will use DevSpace subagents. It then detects the supported
62+ providers and asks which ones DevSpace may launch. These choices are persisted
63+ as provider objects under ` subagents ` in ` ~/.devspace/config.json ` .
64+
65+ For a local harness, setup prints this command instead of modifying harness
66+ directories itself:
67+
68+ ``` bash
69+ npx skills add Waishnav/devspace --skill subagent-delegation --global
70+ ```
71+
72+ The Skills CLI asks which installed harnesses should receive the skill. The
73+ skill uses ` devspace agents targets ` , ` run ` , ` continue ` , ` show ` , and ` ls ` ; these
74+ commands start DevSpace's local agent daemon as needed and do not require
75+ ` devspace serve ` .
76+
77+ ### Public Base URL For Remote MCP
5778
5879Start your tunnel or reverse proxy before entering this value. Point the tunnel
5980at:
@@ -74,6 +95,9 @@ Configure the MCP client with the full MCP endpoint:
7495https://your-tunnel-host.example.com/mcp
7596```
7697
98+ Skip remote MCP access during setup for a local-harness-only configuration; no
99+ public URL is required.
100+
77101## Start The Server
78102
79103Run:
0 commit comments