Skip to content

Commit 1d99e9e

Browse files
committed
docs: add MCP server prerequisites to installation guide
1 parent 6677fd0 commit 1d99e9e

File tree

2 files changed

+34
-13
lines changed

2 files changed

+34
-13
lines changed

.vscode/mcp.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,6 @@
4242
"@modelcontextprotocol/server-sequential-thinking"
4343
]
4444
},
45-
"docker": {
46-
"type": "stdio",
47-
"command": "npx",
48-
"args": [
49-
"-y",
50-
"docker-mcp"
51-
]
52-
},
5345
"memory": {
5446
"type": "stdio",
5547
"command": "npx",

docs/tutorial/installation.md

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,24 @@ prerequisites.
55

66
## Table of Contents
77

8-
- [Prerequisites](#prerequisites)
9-
- [Development Build (Go)](#development-build-go)
10-
- [Production Build (Earthly)](#production-build-earthly)
11-
- [Install via Debian Package](#install-via-debian-package)
12-
- [Image Composition Prerequisites](#image-composition-prerequisites)
8+
- [Installation Guide](#installation-guide)
9+
- [Table of Contents](#table-of-contents)
10+
- [Prerequisites](#prerequisites)
11+
- [Development Build (Go)](#development-build-go)
12+
- [Including Version Information in Dev Builds](#including-version-information-in-dev-builds)
13+
- [VS Code MCP Servers (Optional)](#vs-code-mcp-servers-optional)
14+
- [Production Build (Earthly)](#production-build-earthly)
15+
- [Install via Debian Package](#install-via-debian-package)
16+
- [Build the Debian Package](#build-the-debian-package)
17+
- [Install the Package](#install-the-package)
18+
- [Verify Installation](#verify-installation)
19+
- [Package Contents](#package-contents)
20+
- [Package Dependencies](#package-dependencies)
21+
- [Uninstall](#uninstall)
22+
- [Image Composition Prerequisites](#image-composition-prerequisites)
23+
- [ukify](#ukify)
24+
- [mmdebstrap](#mmdebstrap)
25+
- [Next Steps](#next-steps)
1326

1427
---
1528

@@ -69,6 +82,22 @@ go build -buildmode=pie \
6982
./cmd/live-installer
7083
```
7184

85+
### VS Code MCP Servers (Optional)
86+
87+
This repository includes `.vscode/mcp.json` which configures
88+
[MCP servers](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) for
89+
AI-assisted development with GitHub Copilot. These are **optional** — everything
90+
works without them.
91+
92+
| Requirement | What it provides | Install |
93+
|-------------|-----------------|---------|
94+
| Go 1.24+ with `gopls` | Go workspace tools (diagnostics, search, references) | VS Code Go extension installs `gopls` automatically |
95+
| Node.js 18+ with `npx` | GitHub, fetch, context7, sequential-thinking, memory servers | [nodejs.org](https://nodejs.org/) |
96+
| GitHub PAT (optional) | GitHub MCP server authentication | [Creating a PAT](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens) |
97+
98+
If a server's prerequisites are not met, VS Code will skip that server with no
99+
impact on normal development.
100+
72101
## Production Build (Earthly)
73102

74103
For reproducible production builds with automatic version injection.

0 commit comments

Comments
 (0)