vantage-peers-mcp 1.0.1 → 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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  MCP server for [VantagePeers](https://vantagepeers.com) — shared memory, messaging, and task coordination for AI agent teams.
4
4
 
5
- 75 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.
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
7
  ## Quick start
8
8
 
@@ -53,7 +53,7 @@ Add to `~/.claude.json` or project `.claude/settings.json`:
53
53
 
54
54
  The server also reads `CONVEX_URL` from `.env.local` in the parent directory if not set via environment.
55
55
 
56
- ## Tools (75)
56
+ ## Tools (82)
57
57
 
58
58
  ### Memory (6)
59
59
  `store_memory`, `recall`, `list_memories`, `soft_delete_memory`, `get_memory`, `store_episode`
@@ -61,11 +61,11 @@ The server also reads `CONVEX_URL` from `.env.local` in the parent directory if
61
61
  ### Profiles (3)
62
62
  `get_profile`, `update_profile`, `list_peers`
63
63
 
64
- ### Tasks (8)
65
- `create_task`, `list_tasks`, `list_tasks_by_mission`, `update_task`, `start_task`, `complete_task`, `checkout_task`, `delete_task`
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
66
 
67
- ### Missions (5)
68
- `create_mission`, `list_missions`, `update_mission`, `update_mission_status`, `get_mission_template`
67
+ ### Missions (6)
68
+ `create_mission`, `list_missions`, `update_mission`, `update_mission_status`, `get_mission_template`, `get_mission`
69
69
 
70
70
  ### Mission Templates (1)
71
71
  `update_mission_template`
@@ -97,14 +97,14 @@ The server also reads `CONVEX_URL` from `.env.local` in the parent directory if
97
97
  ### Business Units (5)
98
98
  `create_bu`, `list_bus`, `get_bu`, `update_bu`, `delete_bu`
99
99
 
100
- ### Components (3)
101
- `register_component`, `list_components`, `get_component`
100
+ ### Components (6)
101
+ `register_component`, `list_components`, `get_component`, `update_component`, `delete_component`, `search_components`
102
102
 
103
103
  ### Mandates (6)
104
104
  `create_mandate`, `list_mandates`, `accept_mandate`, `update_mandate`, `validate_mandate_spending`, `settle_mandate`
105
105
 
106
- ### Recurring Tasks (5)
107
- `create_recurring_task`, `list_recurring_tasks`, `pause_recurring_task`, `resume_recurring_task`, `delete_recurring_task`
106
+ ### Recurring Tasks (6)
107
+ `create_recurring_task`, `list_recurring_tasks`, `pause_recurring_task`, `resume_recurring_task`, `delete_recurring_task`, `update_recurring_task`
108
108
 
109
109
  ### Session (1)
110
110
  `set_summary`
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 memory functions as Claude Code tools via stdio transport.
4
+ * Exposes 82 Convex-backed tools to Claude Code agents via stdio transport.
5
5
  *
6
- * Tools:
7
- * store_memory — create a typed memory entry
8
- * recall — semantic vector search over memories
9
- * store_episode — create an episodic memory with structured fields
10
- * get_profile — fetch an orchestrator profile
11
- * update_profile — upsert an orchestrator profile
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 {};