Skip to content

Commit fd48fe1

Browse files
author
Hannia Valera
committed
feat: update installation commands in documentation to use yarn instead of npm
1 parent 8235cb9 commit fd48fe1

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ To set it up, build it once:
1010

1111
```bash
1212
cd tools/onboarding-mcp
13-
npm install
14-
npm run build
13+
yarn install
14+
yarn build
1515
```
1616

1717
Then open **Copilot Chat** in VS Code (`Ctrl+Shift+I`), switch to **Agent mode**, and ask anything — for example *"How do I set up this repo?"* or *"What's a good first issue?"*

tools/onboarding-mcp/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ A [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) server that h
66

77
```bash
88
cd tools/onboarding-mcp
9-
npm install # or: yarn install
10-
npm run build # or: yarn build
9+
yarn install
10+
yarn build
1111
```
1212

1313
## Wire it up in VS Code
@@ -29,7 +29,7 @@ Add the following to your **`.vscode/mcp.json`** at the workspace root:
2929
}
3030
```
3131

32-
The `GITHUB_TOKEN` env var is **optional** but recommended. Without it, GitHub API calls (used by Phase 3 tools) are limited to 60 requests/hour. With a token, the limit is 5,000/hour. You can create a personal access token at https://github.com/settings/tokens — no scopes are needed for public repos.
32+
The `GITHUB_TOKEN` env var is **optional** but recommended. Without it, GitHub API calls are limited to 60 requests/hour. With a token, the limit is 5,000/hour. You can create a personal access token at https://github.com/settings/tokens — no scopes are needed for public repos.
3333

3434
Once configured, the MCP server is available to Copilot agent mode (and any other MCP client) in VS Code.
3535

@@ -39,8 +39,8 @@ The MCP server works **inside GitHub Copilot Chat** in VS Code. There's nothing
3939

4040
```bash
4141
cd tools/onboarding-mcp
42-
npm install
43-
npm run build
42+
yarn install
43+
yarn build
4444
```
4545

4646
Then open a **Copilot Chat** panel (press `Ctrl+Shift+I` or click the Copilot icon in the sidebar) and switch to **Agent mode** (the dropdown at the top of the chat panel). VS Code may show a notification asking you to start the MCP server — click **Start**.
@@ -79,13 +79,13 @@ Once it's running, just ask questions in natural language. Copilot will automati
7979

8080
```bash
8181
# Run the server in dev mode (uses tsx, no build step needed):
82-
npm run dev
82+
yarn dev
8383

8484
# Build for production:
85-
npm run build
85+
yarn build
8686

8787
# Run the production build:
88-
npm start
88+
yarn start
8989
```
9090

9191
## Available tools

0 commit comments

Comments
 (0)