vantage-peers-mcp 1.0.0 → 2.0.0
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 +102 -19
- package/dist/server.d.ts +7 -8
- package/dist/server.js +1687 -1048
- package/package.json +15 -11
- package/convex-api/api.d.ts +0 -499
- package/convex-api/api.js +0 -23
package/README.md
CHANGED
|
@@ -1,23 +1,42 @@
|
|
|
1
|
-
#
|
|
1
|
+
# vantage-peers-mcp
|
|
2
2
|
|
|
3
|
-
MCP server
|
|
3
|
+
MCP server for [VantagePeers](https://vantagepeers.com) — shared memory, messaging, and task coordination for AI agent teams.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
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.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- Convex deployment running (`CONVEX_URL` set)
|
|
9
|
-
- OpenAI API key set as Convex env var (`AI_GATEWAY_API_KEY`)
|
|
7
|
+
## Quick start
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
```bash
|
|
10
|
+
npx vantage-peers-mcp
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Requires `CONVEX_URL` pointing to your VantagePeers Convex deployment.
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
### Option 1: npx (no install)
|
|
12
18
|
|
|
13
|
-
|
|
19
|
+
```bash
|
|
20
|
+
CONVEX_URL=https://your-deployment.convex.cloud npx vantage-peers-mcp
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Option 2: global install
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install -g vantage-peers-mcp
|
|
27
|
+
CONVEX_URL=https://your-deployment.convex.cloud vantage-peers-mcp
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Option 3: Claude Code MCP config
|
|
31
|
+
|
|
32
|
+
Add to `~/.claude.json` or project `.claude/settings.json`:
|
|
14
33
|
|
|
15
34
|
```json
|
|
16
35
|
{
|
|
17
36
|
"mcpServers": {
|
|
18
|
-
"vantage-
|
|
19
|
-
"command": "
|
|
20
|
-
"args": ["
|
|
37
|
+
"vantage-peers": {
|
|
38
|
+
"command": "npx",
|
|
39
|
+
"args": ["-y", "vantage-peers-mcp"],
|
|
21
40
|
"env": {
|
|
22
41
|
"CONVEX_URL": "https://your-deployment.convex.cloud"
|
|
23
42
|
}
|
|
@@ -26,16 +45,80 @@ Add to `~/.claude/settings.json` (user-scoped) or `.claude/settings.json` (proje
|
|
|
26
45
|
}
|
|
27
46
|
```
|
|
28
47
|
|
|
29
|
-
|
|
48
|
+
## Environment variables
|
|
30
49
|
|
|
31
|
-
|
|
50
|
+
| Variable | Required | Description |
|
|
51
|
+
|----------|----------|-------------|
|
|
52
|
+
| `CONVEX_URL` | Yes | Your VantagePeers Convex deployment URL |
|
|
32
53
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
54
|
+
The server also reads `CONVEX_URL` from `.env.local` in the parent directory if not set via environment.
|
|
55
|
+
|
|
56
|
+
## Tools (82)
|
|
57
|
+
|
|
58
|
+
### Memory (6)
|
|
59
|
+
`store_memory`, `recall`, `list_memories`, `soft_delete_memory`, `get_memory`, `store_episode`
|
|
60
|
+
|
|
61
|
+
### Profiles (3)
|
|
62
|
+
`get_profile`, `update_profile`, `list_peers`
|
|
63
|
+
|
|
64
|
+
### Tasks (10)
|
|
65
|
+
`create_task`, `list_tasks`, `list_tasks_by_mission`, `update_task`, `start_task`, `complete_task`, `checkout_task`, `delete_task`, `block_task`, `add_task_dependency`
|
|
66
|
+
|
|
67
|
+
### Missions (6)
|
|
68
|
+
`create_mission`, `list_missions`, `update_mission`, `update_mission_status`, `get_mission_template`, `get_mission`
|
|
69
|
+
|
|
70
|
+
### Mission Templates (1)
|
|
71
|
+
`update_mission_template`
|
|
72
|
+
|
|
73
|
+
### Messages (6)
|
|
74
|
+
`send_message`, `check_messages`, `mark_as_read`, `list_messages`, `delete_message`, `list_broadcast_status`
|
|
75
|
+
|
|
76
|
+
### Diary (3)
|
|
77
|
+
`write_diary`, `get_diary`, `list_diaries`
|
|
78
|
+
|
|
79
|
+
### Briefing Notes (2)
|
|
80
|
+
`create_briefing_note`, `list_briefing_notes`
|
|
81
|
+
|
|
82
|
+
### Search / RAG (3)
|
|
83
|
+
`search_fix_patterns`, `text_search`, `hybrid_search`
|
|
84
|
+
|
|
85
|
+
### Issues (6)
|
|
86
|
+
`get_issue`, `list_issues`, `update_issue_status`, `verify_issue`, `issue_stats`, `link_commit_to_issue`
|
|
87
|
+
|
|
88
|
+
### Fix Patterns (5)
|
|
89
|
+
`create_fix_pattern`, `list_fix_patterns`, `add_fix_attempt`, `validate_fix`, `link_issue_to_pattern`
|
|
90
|
+
|
|
91
|
+
### Error Monitoring (2)
|
|
92
|
+
`list_errors`, `get_error`
|
|
93
|
+
|
|
94
|
+
### Deployments & Repos (5)
|
|
95
|
+
`add_deployment`, `remove_deployment`, `list_repo_mappings`, `add_repo_mapping`, `remove_repo_mapping`
|
|
96
|
+
|
|
97
|
+
### Business Units (5)
|
|
98
|
+
`create_bu`, `list_bus`, `get_bu`, `update_bu`, `delete_bu`
|
|
99
|
+
|
|
100
|
+
### Components (6)
|
|
101
|
+
`register_component`, `list_components`, `get_component`, `update_component`, `delete_component`, `search_components`
|
|
102
|
+
|
|
103
|
+
### Mandates (6)
|
|
104
|
+
`create_mandate`, `list_mandates`, `accept_mandate`, `update_mandate`, `validate_mandate_spending`, `settle_mandate`
|
|
105
|
+
|
|
106
|
+
### Recurring Tasks (6)
|
|
107
|
+
`create_recurring_task`, `list_recurring_tasks`, `pause_recurring_task`, `resume_recurring_task`, `delete_recurring_task`, `update_recurring_task`
|
|
108
|
+
|
|
109
|
+
### Session (1)
|
|
110
|
+
`set_summary`
|
|
111
|
+
|
|
112
|
+
## Requirements
|
|
113
|
+
|
|
114
|
+
- Node.js >= 18
|
|
115
|
+
- A VantagePeers Convex deployment ([get started](https://vantagepeers.com/docs))
|
|
116
|
+
|
|
117
|
+
## License
|
|
36
118
|
|
|
37
|
-
|
|
119
|
+
FSL-1.1-Apache-2.0
|
|
38
120
|
|
|
39
|
-
##
|
|
121
|
+
## Links
|
|
40
122
|
|
|
41
|
-
|
|
123
|
+
- [Documentation](https://vantagepeers.com/docs)
|
|
124
|
+
- [GitHub](https://github.com/vantageos-agency/vantage-peers)
|
package/dist/server.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
3
|
* VantagePeers MCP Server
|
|
4
|
-
* Exposes Convex
|
|
4
|
+
* Exposes 82 Convex-backed tools to Claude Code agents via stdio transport.
|
|
5
5
|
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
* list_memories — list memories by namespace with optional type filter
|
|
6
|
+
* Tool categories: Memory, Profiles, Messages, Tasks, Missions, Diary,
|
|
7
|
+
* Briefing Notes, Components, Recurring Tasks, Mandates, Business Units,
|
|
8
|
+
* Issues, Fix Patterns, Search/RAG, Mission Templates, Error Monitoring,
|
|
9
|
+
* Deployments, Repo Mappings.
|
|
10
|
+
*
|
|
11
|
+
* See README.md for the full tool reference.
|
|
13
12
|
*/
|
|
14
13
|
export {};
|