@vantageos/vantage-registry-mcp 1.1.0 → 1.1.1
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 +2 -4
- package/package.json +1 -1
- package/server.ts +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
MCP server exposing [VantageRegistry](https://github.com/elpiarthera/vantage-registry) Convex functions as Claude Code tools via stdio transport.
|
|
4
4
|
|
|
5
|
-
**Version:** 1.1.
|
|
5
|
+
**Version:** 1.1.1
|
|
6
6
|
**Backend:** Convex (vibrant-ibex-858)
|
|
7
7
|
**Transport:** stdio (Claude Code MCP protocol)
|
|
8
8
|
|
|
@@ -103,7 +103,7 @@ list_templates(team="core", template_type="checklist")
|
|
|
103
103
|
|
|
104
104
|
### Runbooks
|
|
105
105
|
|
|
106
|
-
**
|
|
106
|
+
**Added in 1.1.0.** Runbooks are structured, versioned operational playbooks stored in VantageRegistry.
|
|
107
107
|
|
|
108
108
|
| Tool | Description |
|
|
109
109
|
|------|-------------|
|
|
@@ -210,10 +210,8 @@ upsert_runbook(
|
|
|
210
210
|
| `related_skills` | string[] | Referenced skill slugs |
|
|
211
211
|
| `related_agents` | string[] | Referenced agent slugs |
|
|
212
212
|
| `linked_templates` | LinkedTemplate[] | Templates used within this runbook |
|
|
213
|
-
| `embedding` | float64[1536] | OpenAI ada-002 embedding for hybrid search |
|
|
214
213
|
|
|
215
214
|
**Indexes:** `byName`, `byStatus`, `byCategory`, `byTeam`
|
|
216
|
-
**Vector index:** `byEmbedding` (1536 dimensions, filter fields: `status`, `category`, `team`)
|
|
217
215
|
|
|
218
216
|
### templates table (enriched in 1.1.0)
|
|
219
217
|
|
package/package.json
CHANGED
package/server.ts
CHANGED
|
@@ -120,7 +120,7 @@ const convex = new ConvexHttpClient(convexUrl);
|
|
|
120
120
|
|
|
121
121
|
const server = new McpServer({
|
|
122
122
|
name: "vantage-registry",
|
|
123
|
-
version: "1.1.
|
|
123
|
+
version: "1.1.1",
|
|
124
124
|
});
|
|
125
125
|
|
|
126
126
|
// ═══════════════════════════════════════════════════════════════════════════════
|