vantage-peers-mcp 2.0.1 → 2.0.2
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 +45 -0
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# vantage-peers-mcp
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/vantage-peers-mcp)
|
|
4
|
+
[](https://www.npmjs.com/package/vantage-peers-mcp)
|
|
5
|
+
[](https://github.com/vantageos-agency/vantage-peers/blob/main/LICENSE)
|
|
6
|
+
[]()
|
|
7
|
+
|
|
3
8
|
MCP server for [VantagePeers](https://vantagepeers.com) — shared memory, messaging, and task coordination for AI agent teams.
|
|
4
9
|
|
|
5
10
|
82 tools across 18 categories: memory, profiles, tasks, missions, mission templates, messages, diary, briefing notes, search (RAG), issues, fix patterns, error monitoring, deployments, business units, components, mandates, recurring tasks, and session.
|
|
@@ -174,11 +179,51 @@ await client.mutation(api.messages.sendMessage, {
|
|
|
174
179
|
|
|
175
180
|
**Security:** Never commit deploy keys to git. Use environment variables or a secrets manager.
|
|
176
181
|
|
|
182
|
+
## Orchestrator Roles
|
|
183
|
+
|
|
184
|
+
All orchestrator names are open strings — any lowercase name is accepted. The following are conventions used by the VantageOS team:
|
|
185
|
+
|
|
186
|
+
| Role | Purpose |
|
|
187
|
+
|------|---------|
|
|
188
|
+
| `pi` | Lead orchestrator — planning, delegation, strategy |
|
|
189
|
+
| `tau` | Frontend specialist — UI, design systems, components |
|
|
190
|
+
| `phi` | Backend specialist — APIs, database, infrastructure |
|
|
191
|
+
| `sigma` | Infrastructure — deployments, CI/CD, monitoring |
|
|
192
|
+
| `omega` | VantageRegistry — agent and skill catalog |
|
|
193
|
+
| `zeta` | Project-specific specialist |
|
|
194
|
+
| `eta` | Code reviewer — GitHub PR reviews |
|
|
195
|
+
| `alpha` | Perello Consulting — client delivery |
|
|
196
|
+
| `lambda` | Tech intelligence — research and monitoring |
|
|
197
|
+
| `victor` | HR / people operations |
|
|
198
|
+
| `system` | Reserved for automated/webhook operations (bypasses RBAC). Not a real agent. |
|
|
199
|
+
|
|
200
|
+
> **Custom roles:** any lowercase string is a valid orchestrator name. Enterprise clients can use arbitrary role names for their own agent teams.
|
|
201
|
+
|
|
177
202
|
## Requirements
|
|
178
203
|
|
|
179
204
|
- Node.js >= 18
|
|
180
205
|
- A VantagePeers Convex deployment ([get started](https://vantagepeers.com/docs))
|
|
181
206
|
|
|
207
|
+
## Changelog
|
|
208
|
+
|
|
209
|
+
### 2.0.2 — 2026-04-14
|
|
210
|
+
- Added badges (npm version, downloads, license, tool count) to the published README
|
|
211
|
+
- Added Orchestrator Roles reference table including alpha, lambda, victor (Day 39 additions)
|
|
212
|
+
- Added note that any custom lowercase role name is accepted
|
|
213
|
+
- Added `bugs` URL and additional keywords to `package.json`
|
|
214
|
+
|
|
215
|
+
### 2.0.1 — 2026-04-14
|
|
216
|
+
- Docstring fix in server.ts (minor)
|
|
217
|
+
|
|
218
|
+
### 2.0.0
|
|
219
|
+
- Type-safe `api.ts` export for cross-deployment calls (`vantage-peers-mcp/api`)
|
|
220
|
+
- Deploy key authentication guide
|
|
221
|
+
- Mission Templates category (1 tool: `update_mission_template`)
|
|
222
|
+
- Programmatic API section in README
|
|
223
|
+
|
|
224
|
+
### 1.x
|
|
225
|
+
- Initial public release with 82 MCP tools
|
|
226
|
+
|
|
182
227
|
## License
|
|
183
228
|
|
|
184
229
|
FSL-1.1-Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vantage-peers-mcp",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "MCP server for VantagePeers — shared memory, messaging, and task coordination for AI agent teams",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/server.js",
|
|
@@ -30,6 +30,9 @@
|
|
|
30
30
|
"directory": "mcp-server"
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://vantagepeers.com/docs",
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/vantageos-agency/vantage-peers/issues"
|
|
35
|
+
},
|
|
33
36
|
"keywords": [
|
|
34
37
|
"mcp",
|
|
35
38
|
"claude",
|
|
@@ -40,7 +43,13 @@
|
|
|
40
43
|
"tasks",
|
|
41
44
|
"multi-agent",
|
|
42
45
|
"orchestration",
|
|
43
|
-
"vantagepeers"
|
|
46
|
+
"vantagepeers",
|
|
47
|
+
"diary",
|
|
48
|
+
"episodes",
|
|
49
|
+
"mandates",
|
|
50
|
+
"knowledge-base",
|
|
51
|
+
"rag",
|
|
52
|
+
"vector-search"
|
|
44
53
|
],
|
|
45
54
|
"author": "ElPi Corp",
|
|
46
55
|
"license": "FSL-1.1-Apache-2.0",
|