diff --git a/packages/web/src/content/docs/server.mdx b/packages/web/src/content/docs/server.mdx
index 4510bd4981fe..eed96ccc034d 100644
--- a/packages/web/src/content/docs/server.mdx
+++ b/packages/web/src/content/docs/server.mdx
@@ -89,10 +89,12 @@ The opencode server exposes the following APIs.
### Global
-| Method | Path | Description | Response |
-| ------ | ---------------- | ------------------------------ | ------------------------------------ |
-| `GET` | `/global/health` | Get server health and version | `{ healthy: true, version: string }` |
-| `GET` | `/global/event` | Get global events (SSE stream) | Event stream |
+| Method | Path | Description | Response |
+| ------- | ---------------- | ------------------------------ | ------------------------------------ |
+| `GET` | `/global/health` | Get server health and version | `{ healthy: true, version: string }` |
+| `GET` | `/global/event` | Get global events (SSE stream) | Event stream |
+| `GET` | `/global/config` | Get global config info | Config |
+| `PATCH` | `/global/config` | Update global config | Config |
---
@@ -126,8 +128,8 @@ The opencode server exposes the following APIs.
| Method | Path | Description | Response |
| ------- | ------------------- | --------------------------------- | ---------------------------------------------------------------------------------------- |
-| `GET` | `/config` | Get config info | Config |
-| `PATCH` | `/config` | Update config | Config |
+| `GET` | `/config` | Get instance config info | Config |
+| `PATCH` | `/config` | Update instance config | Config |
| `GET` | `/config/providers` | List providers and default models | `{ providers: `Provider[]`, default: { [key: string]: string } }` |
---