Skip to content

Commit f0c85e1

Browse files
committed
chore: release v1.0.11
* (@GermanBluefox) Default port was changed to 8011 * (@GermanBluefox) Corrected the issue with authentication
1 parent 64dd1f6 commit f0c85e1

3 files changed

Lines changed: 82 additions & 69 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ tools rather than as subscribable resources.)
137137
Placeholder for the next version (at the beginning of the line):
138138
### **WORK IN PROGRESS**
139139
-->
140-
### **WORK IN PROGRESS**
140+
### 1.0.11 (2026-07-02)
141141
* (@GermanBluefox) Default port was changed to 8011
142142
* (@GermanBluefox) Corrected the issue with authentication
143143

io-package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
{
22
"common": {
33
"name": "mcp",
4-
"version": "1.0.10",
4+
"version": "1.0.11",
55
"news": {
6+
"1.0.11": {
7+
"en": "Default port was changed to 8011\nCorrected the issue with authentication",
8+
"de": "Der Standardport wurde auf 8011 geändert.\nDas Problem mit der Authentifizierung wurde behoben.",
9+
"ru": "Порт по умолчанию был изменен на 8011.\nИсправлена проблема с аутентификацией.",
10+
"pt": "A porta padrão foi alterada para 8011.\nProblema com a autenticação corrigido.",
11+
"nl": "De standaardpoort is gewijzigd naar 8011.\nHet authenticatieprobleem is opgelost.",
12+
"fr": "Le port par défaut a été modifié et est désormais le 8011.\nProblème d'authentification résolu",
13+
"it": "La porta predefinita è stata modificata in 8011\nRisolto il problema di autenticazione.",
14+
"es": "El puerto predeterminado se cambió a 8011.\nSe solucionó el problema de autenticación.",
15+
"pl": "Domyślny port został zmieniony na 8011\nNaprawiono problem z uwierzytelnianiem",
16+
"uk": "Порт за замовчуванням змінено на 8011\nВиправлено проблему з автентифікацією",
17+
"zh-cn": "默认端口已更改为 8011\n已修复身份验证问题。"
18+
},
619
"1.0.8": {
720
"en": "Used `@iobroker/mcp-server` package",
821
"de": "Das Paket `@iobroker/mcp-server` wurde verwendet.",

package.json

Lines changed: 67 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
11
{
2-
"name": "iobroker.mcp",
3-
"version": "1.0.10",
4-
"description": "MCP server for ioBroker",
5-
"author": {
6-
"name": "ioBroker",
7-
"email": "info@iobroker.net"
8-
},
9-
"homepage": "https://github.com/ioBroker/ioBroker.mcp",
10-
"license": "MIT",
11-
"keywords": [
12-
"ioBroker",
13-
"mcp",
14-
"server",
15-
"web",
16-
"rest"
17-
],
18-
"repository": {
19-
"type": "git",
20-
"url": "https://github.com/ioBroker/ioBroker.mcp"
21-
},
22-
"engines": {
23-
"node": ">=20"
24-
},
25-
"dependencies": {
26-
"@iobroker/adapter-core": "^3.4.1",
27-
"@iobroker/webserver": "^1.4.0",
28-
"@iobroker/mcp-server": "^0.1.2",
29-
"express": "^5.2.1"
30-
},
31-
"devDependencies": {
32-
"@alcalzone/release-script": "~5.2.1",
33-
"@alcalzone/release-script-plugin-iobroker": "~5.2.0",
34-
"@alcalzone/release-script-plugin-license": "~5.2.0",
35-
"@iobroker/eslint-config": "^2.3.4",
36-
"@iobroker/testing": "^5.2.2",
37-
"@iobroker/types": "^7.2.2",
38-
"@tsconfig/node20": "^20.1.9",
39-
"@types/express": "^5.0.6",
40-
"@types/mocha": "^10.0.10",
41-
"@types/node": "^20.19.43",
42-
"ts-node": "^10.9.2",
43-
"typescript": "^6.0.3"
44-
},
45-
"main": "build/main.js",
46-
"files": [
47-
"admin/",
48-
"build/",
49-
"io-package.json",
50-
"LICENSE",
51-
"manifest.json"
52-
],
53-
"scripts": {
54-
"build": "tsc -p tsconfig.build.json",
55-
"test": "mocha",
56-
"test:package": "mocha test/package.test.ts",
57-
"test:integration": "mocha test/testAdapter.test.ts",
58-
"test:typecheck": "tsc --noEmit -p test/tsconfig.json",
59-
"lint": "eslint -c eslint.config.mjs",
60-
"release": "release-script",
61-
"release-patch": "release-script patch --yes --no-update-lockfile",
62-
"release-minor": "release-script minor --yes --no-update-lockfile",
63-
"release-major": "release-script major --yes --no-update-lockfile"
64-
},
65-
"bugs": {
66-
"url": "https://github.com/ioBroker/ioBroker.mcp/issues"
67-
},
68-
"readmeFilename": "README.md"
2+
"name": "iobroker.mcp",
3+
"version": "1.0.11",
4+
"description": "MCP server for ioBroker",
5+
"author": {
6+
"name": "ioBroker",
7+
"email": "info@iobroker.net"
8+
},
9+
"homepage": "https://github.com/ioBroker/ioBroker.mcp",
10+
"license": "MIT",
11+
"keywords": [
12+
"ioBroker",
13+
"mcp",
14+
"server",
15+
"web",
16+
"rest"
17+
],
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/ioBroker/ioBroker.mcp"
21+
},
22+
"engines": {
23+
"node": ">=20"
24+
},
25+
"dependencies": {
26+
"@iobroker/adapter-core": "^3.4.1",
27+
"@iobroker/webserver": "^1.4.0",
28+
"@iobroker/mcp-server": "^0.1.2",
29+
"express": "^5.2.1"
30+
},
31+
"devDependencies": {
32+
"@alcalzone/release-script": "~5.2.1",
33+
"@alcalzone/release-script-plugin-iobroker": "~5.2.0",
34+
"@alcalzone/release-script-plugin-license": "~5.2.0",
35+
"@iobroker/eslint-config": "^2.3.4",
36+
"@iobroker/testing": "^5.2.2",
37+
"@iobroker/types": "^7.2.2",
38+
"@tsconfig/node20": "^20.1.9",
39+
"@types/express": "^5.0.6",
40+
"@types/mocha": "^10.0.10",
41+
"@types/node": "^20.19.43",
42+
"ts-node": "^10.9.2",
43+
"typescript": "^6.0.3"
44+
},
45+
"main": "build/main.js",
46+
"files": [
47+
"admin/",
48+
"build/",
49+
"io-package.json",
50+
"LICENSE",
51+
"manifest.json"
52+
],
53+
"scripts": {
54+
"build": "tsc -p tsconfig.build.json",
55+
"test": "mocha",
56+
"test:package": "mocha test/package.test.ts",
57+
"test:integration": "mocha test/testAdapter.test.ts",
58+
"test:typecheck": "tsc --noEmit -p test/tsconfig.json",
59+
"lint": "eslint -c eslint.config.mjs",
60+
"release": "release-script",
61+
"release-patch": "release-script patch --yes --no-update-lockfile",
62+
"release-minor": "release-script minor --yes --no-update-lockfile",
63+
"release-major": "release-script major --yes --no-update-lockfile"
64+
},
65+
"bugs": {
66+
"url": "https://github.com/ioBroker/ioBroker.mcp/issues"
67+
},
68+
"readmeFilename": "README.md"
6969
}

0 commit comments

Comments
 (0)