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
- Your Glean MCP server URL (format: `https://[instance]-be.glean.com/mcp/[server-name]`)
62
+
- Your Glean MCP server URL (find it at [app.glean.com/admin/about-glean](https://app.glean.com/admin/about-glean)); format: `[server-url]/mcp/[server-name]`
Copy file name to clipboardExpand all lines: plugins/glean-core/commands/mcp-setup.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,9 @@ Help the user configure a Glean MCP server for Claude Code. This command can be
11
11
12
12
Guide the user through these steps interactively using AskUserQuestion:
13
13
14
-
### Step 1: Get Instance Name
14
+
### Step 1: Get Server URL
15
15
16
-
Ask the user for their Glean instance name. Explain that if their Glean URL is `https://acme-be.glean.com`, their instance name is `acme`.
17
-
18
-
You can find your Glean URL here: <https://app.glean.com/admin/about-glean>
16
+
Ask the user for their Glean server URL. Explain that they can find it at <https://app.glean.com/admin/about-glean>. The URL will look something like `https://acme-be.glean.com` or `https://be-4f5226e2.glean.com`.
19
17
20
18
### Step 2: Get Server Name
21
19
@@ -33,9 +31,11 @@ Ask what friendly name to use for this server in Claude Code. Suggest:
33
31
Once you have all three values, construct and run the command:
34
32
35
33
```bash
36
-
claude mcp add [friendly-name] https://[instance]-be.glean.com/mcp/[server-name] --transport http --scope user
34
+
claude mcp add [friendly-name] [server-url]/mcp/[server-name] --transport http --scope user
37
35
```
38
36
37
+
Where `[server-url]` is the URL from Step 1 (e.g., `https://acme-be.glean.com` or `https://be-4f5226e2.glean.com`).
38
+
39
39
### Step 5: Confirm Success
40
40
41
41
After running the command:
@@ -47,8 +47,8 @@ After running the command:
47
47
48
48
## Important Notes
49
49
50
-
- The URL format is: `https://[instance]-be.glean.com/mcp/[server-name]`
51
-
-The `-be` suffix is required (it's the backend endpoint)
50
+
- The URL format is: `[server-url]/mcp/[server-name]`
51
+
-Find your server URL at <https://app.glean.com/admin/about-glean>
52
52
- Transport must be `http` (Glean MCP is a remote server)
53
53
- Scope should be `user` for personal configuration
54
54
- Claude Code handles OAuth authentication automatically on first tool use
0 commit comments