@caffeineai/mcp 0.1.0-dev.50 → 0.1.0-dev.51
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 +7 -4
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @caffeineai/mcp
|
|
2
2
|
|
|
3
|
-
An MCP server that exposes Caffeine auth, project, build,
|
|
4
|
-
operations to AI coding hosts.
|
|
3
|
+
An MCP server that exposes Caffeine auth, workspace, project, build,
|
|
4
|
+
config, and chat operations to AI coding hosts.
|
|
5
5
|
|
|
6
6
|
## Development Release
|
|
7
7
|
|
|
@@ -80,7 +80,10 @@ Add this to `~/.codeium/windsurf/mcp_config.json`:
|
|
|
80
80
|
| Auth | `caffeine_auth_login` | Start a browser or device login flow |
|
|
81
81
|
| Auth | `caffeine_auth_logout` | Log out and clear local credentials |
|
|
82
82
|
| Auth | `caffeine_auth_status` | Check authentication status |
|
|
83
|
-
|
|
|
83
|
+
| Workspaces | `caffeine_list_workspaces` | List personal account and team workspaces |
|
|
84
|
+
| Workspaces | `caffeine_workspace_status` | Show the selected workspace |
|
|
85
|
+
| Workspaces | `caffeine_use_workspace` | Persist a team workspace, or `personal` |
|
|
86
|
+
| Projects | `caffeine_list_projects` | List projects in the selected workspace |
|
|
84
87
|
| Projects | `caffeine_show_project` | Get project details |
|
|
85
88
|
| Projects | `caffeine_create_project` | Create a project |
|
|
86
89
|
| Projects | `caffeine_delete_project` | Delete a project |
|
|
@@ -112,7 +115,7 @@ chat contract as the CLI.
|
|
|
112
115
|
|
|
113
116
|
## Example Operations
|
|
114
117
|
|
|
115
|
-
- Log in from your MCP host, then inspect or clone projects
|
|
118
|
+
- Log in from your MCP host, then inspect, switch workspaces, or clone projects
|
|
116
119
|
- Build, check, preview, import, export, or diagnose a local project from the same host
|
|
117
120
|
- Start an interactive chat session and watch it live
|
|
118
121
|
- Detach and later resume or inspect likely active sessions
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caffeineai/mcp",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.51",
|
|
4
4
|
"description": "Caffeine MCP server",
|
|
5
5
|
"homepage": "https://caffeine.ai",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"LICENSE"
|
|
14
14
|
],
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@caffeineai/mcp-darwin-arm64": "0.1.0-dev.
|
|
17
|
-
"@caffeineai/mcp-darwin-x64": "0.1.0-dev.
|
|
18
|
-
"@caffeineai/mcp-linux-arm64-glibc": "0.1.0-dev.
|
|
19
|
-
"@caffeineai/mcp-linux-x64-glibc": "0.1.0-dev.
|
|
20
|
-
"@caffeineai/mcp-linux-arm64-musl": "0.1.0-dev.
|
|
21
|
-
"@caffeineai/mcp-linux-x64-musl": "0.1.0-dev.
|
|
22
|
-
"@caffeineai/mcp-win32-arm64": "0.1.0-dev.
|
|
23
|
-
"@caffeineai/mcp-win32-x64": "0.1.0-dev.
|
|
16
|
+
"@caffeineai/mcp-darwin-arm64": "0.1.0-dev.51",
|
|
17
|
+
"@caffeineai/mcp-darwin-x64": "0.1.0-dev.51",
|
|
18
|
+
"@caffeineai/mcp-linux-arm64-glibc": "0.1.0-dev.51",
|
|
19
|
+
"@caffeineai/mcp-linux-x64-glibc": "0.1.0-dev.51",
|
|
20
|
+
"@caffeineai/mcp-linux-arm64-musl": "0.1.0-dev.51",
|
|
21
|
+
"@caffeineai/mcp-linux-x64-musl": "0.1.0-dev.51",
|
|
22
|
+
"@caffeineai/mcp-win32-arm64": "0.1.0-dev.51",
|
|
23
|
+
"@caffeineai/mcp-win32-x64": "0.1.0-dev.51"
|
|
24
24
|
},
|
|
25
25
|
"preferGlobal": true,
|
|
26
26
|
"publishConfig": {
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
"caffeine": {
|
|
30
30
|
"distribution": "npmjs",
|
|
31
31
|
"packageName": "@caffeineai/mcp",
|
|
32
|
-
"publishedAt": "2026-09-
|
|
32
|
+
"publishedAt": "2026-09-04T06:48:29.360Z"
|
|
33
33
|
}
|
|
34
34
|
}
|