@apify/mcpc 0.1.11-beta.2 → 0.1.11-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/README.md +4 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
- E2E tests now run under the Bun runtime (in addition to Node.js); use `./test/e2e/run.sh --runtime bun` or `npm run test:e2e:bun`
|
|
12
|
+
|
|
10
13
|
### Changed
|
|
11
14
|
- OS keychain now falls back to `~/.mcpc/credentials.json` (mode 0600) when no keyring daemon is available (e.g. headless Linux servers, containers)
|
|
12
15
|
|
package/README.md
CHANGED
|
@@ -47,6 +47,9 @@ After all, UNIX-compatible shell script is THE most universal coding language.
|
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
49
|
npm install -g @apify/mcpc
|
|
50
|
+
|
|
51
|
+
# Or with Bun
|
|
52
|
+
bun install -g @apify/mcpc
|
|
50
53
|
```
|
|
51
54
|
|
|
52
55
|
**Linux users:** `mcpc` uses the OS keychain for secure credential storage via the
|
|
@@ -1028,7 +1031,7 @@ Config files support environment variable substitution using `${VAR_NAME}` synta
|
|
|
1028
1031
|
"secure-server": {
|
|
1029
1032
|
"url": "https://mcp.apify.com",
|
|
1030
1033
|
"headers": {
|
|
1031
|
-
"Authorization": "Bearer ${
|
|
1034
|
+
"Authorization": "Bearer ${APIFY_TOKEN}",
|
|
1032
1035
|
"X-User-ID": "${USER_ID}"
|
|
1033
1036
|
}
|
|
1034
1037
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/mcpc",
|
|
3
|
-
"version": "0.1.11-beta.
|
|
3
|
+
"version": "0.1.11-beta.3",
|
|
4
4
|
"description": "Universal command-line client for the Model Context Protocol (MCP).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"build": "tsc",
|
|
33
33
|
"build:watch": "tsc --watch",
|
|
34
34
|
"build:readme": "./scripts/update-readme.sh",
|
|
35
|
-
"test": "npm run build && npm run test:unit && ./test/e2e/run.sh --no-build --parallel 4",
|
|
35
|
+
"test": "npm run build && npm run test:unit && ./test/e2e/run.sh --no-build --parallel 4 && ./test/e2e/run.sh --no-build --runtime bun",
|
|
36
36
|
"test:unit": "jest",
|
|
37
37
|
"test:watch": "jest --watch",
|
|
38
38
|
"test:coverage": "npm run test:coverage:unit && npm run test:coverage:e2e && npm run test:coverage:merge",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"test:coverage:e2e": "./test/e2e/run.sh --coverage",
|
|
41
41
|
"test:coverage:merge": "test/coverage/coverage-merge.sh",
|
|
42
42
|
"test:e2e": "./test/e2e/run.sh --keep",
|
|
43
|
+
"test:e2e:bun": "./test/e2e/run.sh --no-build --runtime bun",
|
|
43
44
|
"lint": "eslint src/**/*.ts && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
44
45
|
"lint:fix": "eslint src/**/*.ts --fix && prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
45
46
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|