diff --git a/README.md b/README.md
index e814add..cda9719 100644
--- a/README.md
+++ b/README.md
@@ -55,21 +55,17 @@ A [Model Context Protocol server](https://modelcontextprotocol.io/quickstart/use
Set up in VS Code
- Open VS Code `Settings`, search for `MCP`, click `Edit in settings.json`, edit the config to include Testplane MCP as seen below.
+ Click the button to install:
+ [
](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522testplane%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522%2540testplane%252Fmcp%2540latest%2522%255D%257D)
- ```json
- {
- "mcp": {
- "inputs": [],
- "servers": {
- "testplane-mcp": {
- "command": "npx",
- "args": ["@testplane/mcp@latest"]
- }
- }
- }
- }
+ Or install manually:
+
+ Follow the MCP install [guide](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server), use the standard config above. You can also install the Testplane MCP server using the VS Code CLI:
+
+ ```bash
+ code --add-mcp '{"name":"testplane","command":"npx","args":["@testplane/mcp@latest"]}'
```
+