Skip to content

Commit 88a27e7

Browse files
authored
docs: use latest version of testplane mcp in docs (#105)
1 parent 83ad99d commit 88a27e7

File tree

4 files changed

+28
-54
lines changed

4 files changed

+28
-54
lines changed

blog/mcp-release.mdx

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,7 @@ Testplane MCP делает возможным автоматизировать
3434

3535
## Установка
3636

37-
Необходимо запустить сервер из пакета `@testplane/mcp`. Для bleeding-edge сборок используйте тег `@next`, для стабильных — `@latest`:
38-
39-
```shell
40-
npx @testplane/mcp@next
41-
```
42-
43-
Установка зависит от среды, в которой будет использоваться Testplane MCP.
37+
Необходимо добавить сервер Testplane MCP в конфигурацию вашей IDE.
4438

4539
<Tabs>
4640
<TabItem value="cursor" label="Cursor">
@@ -51,7 +45,7 @@ npx @testplane/mcp@next
5145
"mcpServers": {
5246
"testplane-mcp": {
5347
"command": "npx",
54-
"args": ["@testplane/mcp@next"]
48+
"args": ["@testplane/mcp@latest"]
5549
}
5650
}
5751
}
@@ -68,7 +62,7 @@ npx @testplane/mcp@next
6862
"mcpServers": {
6963
"testplane-mcp": {
7064
"command": "npx",
71-
"args": ["@testplane/mcp@next"]
65+
"args": ["@testplane/mcp@latest"]
7266
}
7367
}
7468
}
@@ -85,7 +79,7 @@ npx @testplane/mcp@next
8579
"servers": {
8680
"testplane-mcp": {
8781
"command": "npx",
88-
"args": ["@testplane/mcp@next"]
82+
"args": ["@testplane/mcp@latest"]
8983
}
9084
}
9185
}
@@ -101,7 +95,7 @@ npx @testplane/mcp@next
10195
"mcpServers": {
10296
"testplane-mcp": {
10397
"command": "npx",
104-
"args": ["@testplane/mcp@next"]
98+
"args": ["@testplane/mcp@latest"]
10599
}
106100
}
107101
}
@@ -116,7 +110,7 @@ npx @testplane/mcp@next
116110
"mcpServers": {
117111
"testplane-mcp": {
118112
"command": "npx",
119-
"args": ["@testplane/mcp@next"]
113+
"args": ["@testplane/mcp@latest"]
120114
}
121115
}
122116
}
@@ -131,7 +125,7 @@ npx @testplane/mcp@next
131125
"mcpServers": {
132126
"testplane-mcp": {
133127
"command": "npx",
134-
"args": ["@testplane/mcp@next"]
128+
"args": ["@testplane/mcp@latest"]
135129
}
136130
}
137131
}

docs/testplane-mcp.mdx

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,7 @@ Testplane MCP enables automating repetitive tasks, such as extracting informatio
2020

2121
## Installation
2222

23-
Run the server from the `@testplane/mcp` package:
24-
25-
```shell
26-
npx @testplane/mcp@next
27-
```
28-
29-
Use the `@latest` tag for stable versions, `@next` for experimental ones.
23+
Add Testplane MCP server to the configuration of your IDE.
3024

3125
### Environment setup
3226

@@ -39,7 +33,7 @@ Use the `@latest` tag for stable versions, `@next` for experimental ones.
3933
"mcpServers": {
4034
"testplane-mcp": {
4135
"command": "npx",
42-
"args": ["@testplane/mcp@next"]
36+
"args": ["@testplane/mcp@latest"]
4337
}
4438
}
4539
}
@@ -55,7 +49,7 @@ Use the `@latest` tag for stable versions, `@next` for experimental ones.
5549
"mcpServers": {
5650
"testplane-mcp": {
5751
"command": "npx",
58-
"args": ["@testplane/mcp@next"]
52+
"args": ["@testplane/mcp@latest"]
5953
}
6054
}
6155
}
@@ -72,7 +66,7 @@ Use the `@latest` tag for stable versions, `@next` for experimental ones.
7266
"servers": {
7367
"testplane-mcp": {
7468
"command": "npx",
75-
"args": ["@testplane/mcp@next"]
69+
"args": ["@testplane/mcp@latest"]
7670
}
7771
}
7872
}
@@ -88,7 +82,7 @@ Use the `@latest` tag for stable versions, `@next` for experimental ones.
8882
"mcpServers": {
8983
"testplane-mcp": {
9084
"command": "npx",
91-
"args": ["@testplane/mcp@next"]
85+
"args": ["@testplane/mcp@latest"]
9286
}
9387
}
9488
}
@@ -103,7 +97,7 @@ Use the `@latest` tag for stable versions, `@next` for experimental ones.
10397
"mcpServers": {
10498
"testplane-mcp": {
10599
"command": "npx",
106-
"args": ["@testplane/mcp@next"]
100+
"args": ["@testplane/mcp@latest"]
107101
}
108102
}
109103
}
@@ -118,7 +112,7 @@ Use the `@latest` tag for stable versions, `@next` for experimental ones.
118112
"mcpServers": {
119113
"testplane-mcp": {
120114
"command": "npx",
121-
"args": ["@testplane/mcp@next"]
115+
"args": ["@testplane/mcp@latest"]
122116
}
123117
}
124118
}

i18n/en/docusaurus-plugin-content-blog/mcp-release.mdx

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,7 @@ Testplane MCP makes it possible to automate repetitive processes. For example, y
3434

3535
## Installation
3636

37-
You need to run the server from the `@testplane/mcp` package. For bleeding-edge builds use the `@next` tag, for stable ones use `@latest`:
38-
39-
```shell
40-
npx @testplane/mcp@next
41-
```
42-
43-
Installation depends on the environment where Testplane MCP will be used.
37+
Add Testplane MCP server to the configuration of your IDE.
4438

4539
<Tabs>
4640
<TabItem value="cursor" label="Cursor">
@@ -51,7 +45,7 @@ Installation depends on the environment where Testplane MCP will be used.
5145
"mcpServers": {
5246
"testplane-mcp": {
5347
"command": "npx",
54-
"args": ["@testplane/mcp@next"]
48+
"args": ["@testplane/mcp@latest"]
5549
}
5650
}
5751
}
@@ -68,7 +62,7 @@ Installation depends on the environment where Testplane MCP will be used.
6862
"mcpServers": {
6963
"testplane-mcp": {
7064
"command": "npx",
71-
"args": ["@testplane/mcp@next"]
65+
"args": ["@testplane/mcp@latest"]
7266
}
7367
}
7468
}
@@ -85,7 +79,7 @@ Installation depends on the environment where Testplane MCP will be used.
8579
"servers": {
8680
"testplane-mcp": {
8781
"command": "npx",
88-
"args": ["@testplane/mcp@next"]
82+
"args": ["@testplane/mcp@latest"]
8983
}
9084
}
9185
}
@@ -101,7 +95,7 @@ Installation depends on the environment where Testplane MCP will be used.
10195
"mcpServers": {
10296
"testplane-mcp": {
10397
"command": "npx",
104-
"args": ["@testplane/mcp@next"]
98+
"args": ["@testplane/mcp@latest"]
10599
}
106100
}
107101
}
@@ -116,7 +110,7 @@ Installation depends on the environment where Testplane MCP will be used.
116110
"mcpServers": {
117111
"testplane-mcp": {
118112
"command": "npx",
119-
"args": ["@testplane/mcp@next"]
113+
"args": ["@testplane/mcp@latest"]
120114
}
121115
}
122116
}
@@ -131,7 +125,7 @@ Installation depends on the environment where Testplane MCP will be used.
131125
"mcpServers": {
132126
"testplane-mcp": {
133127
"command": "npx",
134-
"args": ["@testplane/mcp@next"]
128+
"args": ["@testplane/mcp@latest"]
135129
}
136130
}
137131
}

i18n/ru/docusaurus-plugin-content-docs/current/testplane-mcp.mdx

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,7 @@ Testplane MCP позволяет автоматизировать повторя
2020

2121
## Установка
2222

23-
Запустите сервер из пакета `@testplane/mcp`:
24-
25-
```shell
26-
npx @testplane/mcp@next
27-
```
28-
29-
Для стабильных версий используйте тег `@latest`, для экспериментальных — `@next`.
30-
31-
### Настройка среды
23+
Необходимо добавить сервер Testplane MCP в конфигурацию вашей IDE.
3224

3325
<Tabs>
3426
<TabItem value="cursor" label="Cursor">
@@ -39,7 +31,7 @@ npx @testplane/mcp@next
3931
"mcpServers": {
4032
"testplane-mcp": {
4133
"command": "npx",
42-
"args": ["@testplane/mcp@next"]
34+
"args": ["@testplane/mcp@latest"]
4335
}
4436
}
4537
}
@@ -55,7 +47,7 @@ npx @testplane/mcp@next
5547
"mcpServers": {
5648
"testplane-mcp": {
5749
"command": "npx",
58-
"args": ["@testplane/mcp@next"]
50+
"args": ["@testplane/mcp@latest"]
5951
}
6052
}
6153
}
@@ -72,7 +64,7 @@ npx @testplane/mcp@next
7264
"servers": {
7365
"testplane-mcp": {
7466
"command": "npx",
75-
"args": ["@testplane/mcp@next"]
67+
"args": ["@testplane/mcp@latest"]
7668
}
7769
}
7870
}
@@ -88,7 +80,7 @@ npx @testplane/mcp@next
8880
"mcpServers": {
8981
"testplane-mcp": {
9082
"command": "npx",
91-
"args": ["@testplane/mcp@next"]
83+
"args": ["@testplane/mcp@latest"]
9284
}
9385
}
9486
}
@@ -103,7 +95,7 @@ npx @testplane/mcp@next
10395
"mcpServers": {
10496
"testplane-mcp": {
10597
"command": "npx",
106-
"args": ["@testplane/mcp@next"]
98+
"args": ["@testplane/mcp@latest"]
10799
}
108100
}
109101
}
@@ -118,7 +110,7 @@ npx @testplane/mcp@next
118110
"mcpServers": {
119111
"testplane-mcp": {
120112
"command": "npx",
121-
"args": ["@testplane/mcp@next"]
113+
"args": ["@testplane/mcp@latest"]
122114
}
123115
}
124116
}

0 commit comments

Comments
 (0)