@caffeineai/mcp 0.1.0-dev.5 → 0.1.0-dev.7
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/README.md +14 -1
- package/package.json +11 -14
package/README.md
CHANGED
|
@@ -30,6 +30,20 @@ npx -y @caffeineai/mcp@dev --version
|
|
|
30
30
|
|
|
31
31
|
After that, hosts on the same machine start the server from cache. Subsequent runs only re-download when a newer dev version has been published.
|
|
32
32
|
|
|
33
|
+
## Check The Installed Version
|
|
34
|
+
|
|
35
|
+
For minimal output:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npx -y @caffeineai/mcp@dev --version
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
For the standard JSON envelope:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
npx -y @caffeineai/mcp@dev --version --json
|
|
45
|
+
```
|
|
46
|
+
|
|
33
47
|
## Install Into Your Host
|
|
34
48
|
|
|
35
49
|
All snippets below use the stdio transport with `npx -y @caffeineai/mcp@dev` as the command.
|
|
@@ -177,7 +191,6 @@ echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | npx -y @caff
|
|
|
177
191
|
|
|
178
192
|
## Links
|
|
179
193
|
|
|
180
|
-
- Source, issues, and release notes: https://github.com/caffeinelabs/caffeine-cli
|
|
181
194
|
- Caffeine platform: https://caffeine.ai
|
|
182
195
|
- Model Context Protocol: https://modelcontextprotocol.io
|
|
183
196
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caffeineai/mcp",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.7",
|
|
4
4
|
"description": "Caffeine MCP server",
|
|
5
|
-
"
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/caffeinelabs/caffeine-cli.git"
|
|
8
|
-
},
|
|
5
|
+
"homepage": "https://caffeine.ai",
|
|
9
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
10
7
|
"bin": {
|
|
11
8
|
"caffeine-mcp": "bin/caffeine-mcp.js"
|
|
@@ -16,14 +13,14 @@
|
|
|
16
13
|
"LICENSE"
|
|
17
14
|
],
|
|
18
15
|
"optionalDependencies": {
|
|
19
|
-
"@caffeineai/mcp-darwin-arm64": "0.1.0-dev.
|
|
20
|
-
"@caffeineai/mcp-darwin-x64": "0.1.0-dev.
|
|
21
|
-
"@caffeineai/mcp-linux-arm64-glibc": "0.1.0-dev.
|
|
22
|
-
"@caffeineai/mcp-linux-x64-glibc": "0.1.0-dev.
|
|
23
|
-
"@caffeineai/mcp-linux-arm64-musl": "0.1.0-dev.
|
|
24
|
-
"@caffeineai/mcp-linux-x64-musl": "0.1.0-dev.
|
|
25
|
-
"@caffeineai/mcp-win32-arm64": "0.1.0-dev.
|
|
26
|
-
"@caffeineai/mcp-win32-x64": "0.1.0-dev.
|
|
16
|
+
"@caffeineai/mcp-darwin-arm64": "0.1.0-dev.7",
|
|
17
|
+
"@caffeineai/mcp-darwin-x64": "0.1.0-dev.7",
|
|
18
|
+
"@caffeineai/mcp-linux-arm64-glibc": "0.1.0-dev.7",
|
|
19
|
+
"@caffeineai/mcp-linux-x64-glibc": "0.1.0-dev.7",
|
|
20
|
+
"@caffeineai/mcp-linux-arm64-musl": "0.1.0-dev.7",
|
|
21
|
+
"@caffeineai/mcp-linux-x64-musl": "0.1.0-dev.7",
|
|
22
|
+
"@caffeineai/mcp-win32-arm64": "0.1.0-dev.7",
|
|
23
|
+
"@caffeineai/mcp-win32-x64": "0.1.0-dev.7"
|
|
27
24
|
},
|
|
28
25
|
"publishConfig": {
|
|
29
26
|
"access": "public"
|
|
@@ -31,6 +28,6 @@
|
|
|
31
28
|
"caffeine": {
|
|
32
29
|
"distribution": "npmjs",
|
|
33
30
|
"packageName": "@caffeineai/mcp",
|
|
34
|
-
"publishedAt": "2026-
|
|
31
|
+
"publishedAt": "2026-05-01T09:32:35.166Z"
|
|
35
32
|
}
|
|
36
33
|
}
|