@caffeineai/mcp 0.1.0-dev.4 → 0.1.0-dev.6

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.
Files changed (2) hide show
  1. package/README.md +14 -1
  2. package/package.json +15 -13
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.4",
3
+ "version": "0.1.0-dev.6",
4
4
  "description": "Caffeine MCP server",
5
- "repository": {
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,16 +13,21 @@
16
13
  "LICENSE"
17
14
  ],
18
15
  "optionalDependencies": {
19
- "@caffeineai/mcp-darwin-arm64": "0.1.0-dev.4",
20
- "@caffeineai/mcp-darwin-x64": "0.1.0-dev.4",
21
- "@caffeineai/mcp-linux-arm64-glibc": "0.1.0-dev.4",
22
- "@caffeineai/mcp-linux-x64-glibc": "0.1.0-dev.4",
23
- "@caffeineai/mcp-linux-arm64-musl": "0.1.0-dev.4",
24
- "@caffeineai/mcp-linux-x64-musl": "0.1.0-dev.4",
25
- "@caffeineai/mcp-win32-arm64": "0.1.0-dev.4",
26
- "@caffeineai/mcp-win32-x64": "0.1.0-dev.4"
16
+ "@caffeineai/mcp-darwin-arm64": "0.1.0-dev.6",
17
+ "@caffeineai/mcp-darwin-x64": "0.1.0-dev.6",
18
+ "@caffeineai/mcp-linux-arm64-glibc": "0.1.0-dev.6",
19
+ "@caffeineai/mcp-linux-x64-glibc": "0.1.0-dev.6",
20
+ "@caffeineai/mcp-linux-arm64-musl": "0.1.0-dev.6",
21
+ "@caffeineai/mcp-linux-x64-musl": "0.1.0-dev.6",
22
+ "@caffeineai/mcp-win32-arm64": "0.1.0-dev.6",
23
+ "@caffeineai/mcp-win32-x64": "0.1.0-dev.6"
27
24
  },
28
25
  "publishConfig": {
29
26
  "access": "public"
27
+ },
28
+ "caffeine": {
29
+ "distribution": "npmjs",
30
+ "packageName": "@caffeineai/mcp",
31
+ "publishedAt": "2026-04-30T13:34:15.450Z"
30
32
  }
31
33
  }