@essentialai/cc-bridge-mcp-server 0.2.6 → 0.2.8
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 +15 -2
- package/package.json +1 -1
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -4,7 +4,18 @@ Claude Code Bridge from Essential AI Solutions (essentialai.uk) — MCP server f
|
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### Install via Plugin Marketplace (Recommended)
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
claude plugin marketplace add eaisdevelopment/cc-bridge-marketplace
|
|
11
|
+
claude plugin install cc-bridge@cc-bridge-marketplace
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Restart Claude Code. Use `/cc-bridge:register` to join the bridge — session discovery, registration, and message protocol are all handled automatically.
|
|
15
|
+
|
|
16
|
+
### Alternative: Manual Setup
|
|
17
|
+
|
|
18
|
+
Add `.mcp.json` to **both** project repositories:
|
|
8
19
|
|
|
9
20
|
```json
|
|
10
21
|
{
|
|
@@ -24,7 +35,9 @@ Or use the CLI:
|
|
|
24
35
|
claude mcp add --transport stdio cc-bridge -- npx -y @essentialai/cc-bridge-mcp-server
|
|
25
36
|
```
|
|
26
37
|
|
|
27
|
-
|
|
38
|
+
Restart Claude Code in both repos. The bridge tools are now available.
|
|
39
|
+
|
|
40
|
+
> See [docs/installation.md](docs/installation.md) for all installation options, configuration, and troubleshooting.
|
|
28
41
|
|
|
29
42
|
## What It Does
|
|
30
43
|
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "io.github.eaisdevelopment/cc-bridge-mcp-server",
|
|
4
4
|
"title": "Claude Code Bridge from Essential AI Solutions (essentialai.uk)",
|
|
5
5
|
"description": "MCP bridge for inter-session communication between Claude Code instances",
|
|
6
|
-
"version": "0.2.
|
|
6
|
+
"version": "0.2.8",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "https://github.com/eaisdevelopment/cc-bridge-mcp-server",
|
|
9
9
|
"source": "github"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"identifier": "@essentialai/cc-bridge-mcp-server",
|
|
15
|
-
"version": "0.2.
|
|
15
|
+
"version": "0.2.8",
|
|
16
16
|
"runtimeHint": "npx",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|