vibe-annotations-server 0.1.11 → 0.1.12

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 +10 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -46,13 +46,17 @@ vibe-annotations-server logs -f
46
46
 
47
47
  ## AI Coding Agent Integration
48
48
 
49
- After starting the server, connect it to your AI coding agent. The server supports multiple agents via the MCP (Model Context Protocol) using SSE (Server-Sent Events) transport.
49
+ After starting the server, connect it to your AI coding agent. The server supports multiple agents via MCP (Model Context Protocol) using both HTTP and SSE transports.
50
50
 
51
51
  ### Claude Code
52
52
 
53
53
  In your project directory, run:
54
54
 
55
55
  ```bash
56
+ # Recommended (HTTP transport - more stable)
57
+ claude mcp add --transport http vibe-annotations http://127.0.0.1:3846/mcp
58
+
59
+ # Alternative (SSE transport - for compatibility)
56
60
  claude mcp add --transport sse vibe-annotations http://127.0.0.1:3846/sse
57
61
  ```
58
62
 
@@ -67,7 +71,7 @@ claude mcp add --transport sse vibe-annotations http://127.0.0.1:3846/sse
67
71
  {
68
72
  "mcpServers": {
69
73
  "vibe-annotations": {
70
- "url": "http://127.0.0.1:3846/sse"
74
+ "url": "http://127.0.0.1:3846/mcp"
71
75
  }
72
76
  }
73
77
  }
@@ -84,7 +88,7 @@ claude mcp add --transport sse vibe-annotations http://127.0.0.1:3846/sse
84
88
  {
85
89
  "mcpServers": {
86
90
  "vibe-annotations": {
87
- "serverUrl": "http://127.0.0.1:3846/sse"
91
+ "serverUrl": "http://127.0.0.1:3846/mcp"
88
92
  }
89
93
  }
90
94
  }
@@ -103,7 +107,7 @@ claude mcp add --transport sse vibe-annotations http://127.0.0.1:3846/sse
103
107
  "mcpServers": {
104
108
  "vibe-annotations": {
105
109
  "type": "sse",
106
- "url": "http://127.0.0.1:3846/sse"
110
+ "url": "http://127.0.0.1:3846/mcp"
107
111
  }
108
112
  }
109
113
  }
@@ -119,13 +123,13 @@ Other code editors and tools that support SSE (Server-Sent Events) can also conn
119
123
  {
120
124
  "mcpServers": {
121
125
  "vibe-annotations": {
122
- "url": "http://127.0.0.1:3846/sse"
126
+ "url": "http://127.0.0.1:3846/mcp"
123
127
  }
124
128
  }
125
129
  }
126
130
  ```
127
131
 
128
- **Note:** The Vibe Annotations MCP server communicates over the SSE protocol. Use your editor's steps for setting up an SSE-compatible MCP server, and use the URL: `http://127.0.0.1:3846/sse`
132
+ **Note:** The Vibe Annotations MCP server supports both HTTP and SSE transports. HTTP transport is recommended for better stability. Use the URL: `http://127.0.0.1:3846/mcp` (HTTP) or `http://127.0.0.1:3846/sse` (SSE).
129
133
 
130
134
  ## Architecture
131
135
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-annotations-server",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Global MCP server for Vibe Annotations browser extension",
5
5
  "main": "lib/server.js",
6
6
  "type": "module",