loopctl-mcp-server 1.6.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 +104 -7
- package/index.js +268 -21
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
MCP (Model Context Protocol) server for [loopctl](https://loopctl.com) -- structural trust for AI development loops.
|
|
4
4
|
|
|
5
|
-
Wraps the loopctl REST API into
|
|
5
|
+
Wraps the loopctl REST API into 42 typed MCP tools so AI coding agents (Claude Code, etc.) can interact with loopctl without writing curl commands.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -66,7 +66,7 @@ Or if installed locally:
|
|
|
66
66
|
|
|
67
67
|
Key resolution priority: `LOOPCTL_API_KEY` > tool-specific key > `LOOPCTL_ORCH_KEY`.
|
|
68
68
|
|
|
69
|
-
## Tools (
|
|
69
|
+
## Tools (42)
|
|
70
70
|
|
|
71
71
|
### Project Tools
|
|
72
72
|
|
|
@@ -75,6 +75,7 @@ Key resolution priority: `LOOPCTL_API_KEY` > tool-specific key > `LOOPCTL_ORCH_K
|
|
|
75
75
|
| `get_tenant` | Get current tenant info. Use to verify connectivity. |
|
|
76
76
|
| `list_projects` | List all projects in the current tenant. |
|
|
77
77
|
| `create_project` | Create a new project in the current tenant. |
|
|
78
|
+
| `delete_project` | **Requires `LOOPCTL_USER_KEY`.** Delete a project and all of its dependent resources (epics, stories, audit entries). Irreversible — orchestrator role is not sufficient. |
|
|
78
79
|
| `get_progress` | Get progress summary for a project, including story counts by status. Pass `include_cost=true` for cost data. |
|
|
79
80
|
| `import_stories` | Import stories into a project from a structured payload (Epic 12 import format). |
|
|
80
81
|
|
|
@@ -130,10 +131,10 @@ Key resolution priority: `LOOPCTL_API_KEY` > tool-specific key > `LOOPCTL_ORCH_K
|
|
|
130
131
|
|
|
131
132
|
| Tool | Description |
|
|
132
133
|
|---|---|
|
|
133
|
-
| `knowledge_index` | Load the knowledge wiki catalog at session start. Returns lightweight article metadata grouped by category. |
|
|
134
|
-
| `knowledge_search` | Search the knowledge wiki by topic. Supports keyword, semantic, or combined search modes. Returns snippets. |
|
|
135
|
-
| `knowledge_get` | Get full article content by ID. Use after search to read an article in detail. |
|
|
136
|
-
| `knowledge_context` | Get relevance-and-recency-ranked full articles for a task query. Best knowledge for your current context. |
|
|
134
|
+
| `knowledge_index` | Load the knowledge wiki catalog at session start. Returns lightweight article metadata grouped by category. Optional: `project_id`, `story_id`. |
|
|
135
|
+
| `knowledge_search` | Search the knowledge wiki by topic. Supports keyword, semantic, or combined search modes. Returns snippets. Optional: `project_id`, `story_id` for attribution. |
|
|
136
|
+
| `knowledge_get` | Get full article content by ID. Use after search to read an article in detail. Optional: `project_id`, `story_id` for attribution. |
|
|
137
|
+
| `knowledge_context` | Get relevance-and-recency-ranked full articles for a task query. Best knowledge for your current context. Optional: `project_id`, `story_id` for attribution. |
|
|
137
138
|
| `knowledge_create` | Create a new knowledge article. File findings, document patterns, or record decisions. |
|
|
138
139
|
|
|
139
140
|
### Knowledge Management Tools (orchestrator key)
|
|
@@ -155,7 +156,7 @@ Key resolution priority: `LOOPCTL_API_KEY` > tool-specific key > `LOOPCTL_ORCH_K
|
|
|
155
156
|
|---|---|
|
|
156
157
|
| `knowledge_analytics_top` | Top accessed knowledge articles for the tenant. Optional: `limit` (default 20, max 100), `since_days` (default 7), `access_type` (`search`, `get`, `context`, `index`). |
|
|
157
158
|
| `knowledge_article_stats` | Per-article usage stats: total accesses, unique agents, by-type breakdown, recent events. Required: `article_id`. |
|
|
158
|
-
| `knowledge_agent_usage` | Per-agent
|
|
159
|
+
| `knowledge_agent_usage` | Per-agent knowledge usage: total reads, unique articles, top read articles. Required: exactly one of `api_key_id` (credential) or `agent_id` (logical identity). Optional: `limit`, `since_days`. See Wiki Attribution section. |
|
|
159
160
|
| `knowledge_unused_articles` | Published articles with zero accesses in the window. Optional: `days_unused` (default 30), `limit` (default 50, max 200). |
|
|
160
161
|
|
|
161
162
|
### Discovery Tools
|
|
@@ -164,6 +165,102 @@ Key resolution priority: `LOOPCTL_API_KEY` > tool-specific key > `LOOPCTL_ORCH_K
|
|
|
164
165
|
|---|---|
|
|
165
166
|
| `list_routes` | List all available API routes on the loopctl server. |
|
|
166
167
|
|
|
168
|
+
## Wiki Attribution
|
|
169
|
+
|
|
170
|
+
### Passing context parameters on wiki reads
|
|
171
|
+
|
|
172
|
+
Four wiki read tools (`knowledge_search`, `knowledge_get`, `knowledge_context`, `knowledge_index`) accept two optional attribution parameters:
|
|
173
|
+
|
|
174
|
+
| Parameter | Description |
|
|
175
|
+
|---|---|
|
|
176
|
+
| `project_id` | UUID of the loopctl project the agent is working on |
|
|
177
|
+
| `story_id` | UUID of the loopctl story the agent is currently implementing |
|
|
178
|
+
|
|
179
|
+
Passing these parameters lets loopctl record which project and story triggered each wiki read. The analytics endpoints (`knowledge_analytics_top`, `knowledge_agent_usage`, etc.) can then slice usage by project, showing which knowledge articles are most valuable per project.
|
|
180
|
+
|
|
181
|
+
The server silently drops attribution params that belong to a different tenant or are malformed UUIDs — you will not receive an error for invalid values.
|
|
182
|
+
|
|
183
|
+
**Always pass `story_id` when you are working on a loopctl story.** This is the primary mechanism by which wiki reads are attributed to development work.
|
|
184
|
+
|
|
185
|
+
#### Example: typical implementation agent workflow
|
|
186
|
+
|
|
187
|
+
Step 1 — fetch the story to pick up its UUID and context:
|
|
188
|
+
|
|
189
|
+
```json
|
|
190
|
+
{
|
|
191
|
+
"tool": "get_story",
|
|
192
|
+
"arguments": { "story_id": "89aa0c48-5cf5-4925-b164-21684ef79c4d" }
|
|
193
|
+
}
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
Step 2 — call `knowledge_search`, passing `story_id` so the read is attributed:
|
|
197
|
+
|
|
198
|
+
```json
|
|
199
|
+
{
|
|
200
|
+
"tool": "knowledge_search",
|
|
201
|
+
"arguments": {
|
|
202
|
+
"q": "csv import bulk validation",
|
|
203
|
+
"project_id": "b50c9e38-aebe-4bbe-b8e6-bf2cb2b8afd0",
|
|
204
|
+
"story_id": "89aa0c48-5cf5-4925-b164-21684ef79c4d"
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
Step 3 — call `knowledge_get`, reusing the same `story_id`:
|
|
210
|
+
|
|
211
|
+
```json
|
|
212
|
+
{
|
|
213
|
+
"tool": "knowledge_get",
|
|
214
|
+
"arguments": {
|
|
215
|
+
"article_id": "c3d2e1f0-1234-5678-abcd-ef0123456789",
|
|
216
|
+
"project_id": "b50c9e38-aebe-4bbe-b8e6-bf2cb2b8afd0",
|
|
217
|
+
"story_id": "89aa0c48-5cf5-4925-b164-21684ef79c4d"
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
### `knowledge_agent_usage`: api_key_id vs agent_id
|
|
223
|
+
|
|
224
|
+
The `knowledge_agent_usage` tool accepts **exactly one** of two identifier parameters:
|
|
225
|
+
|
|
226
|
+
| Parameter | Meaning | When to use |
|
|
227
|
+
|---|---|---|
|
|
228
|
+
| `api_key_id` | The `api_keys.id` credential UUID — the raw API key identity | You have the credential ID from `GET /api/v1/api_keys` or a loopctl admin page |
|
|
229
|
+
| `agent_id` | The `agents.id` logical identity UUID — the agent registry entry | You have the agent registry ID from `GET /api/v1/agents` or a story's `assigned_agent_id` |
|
|
230
|
+
|
|
231
|
+
The server's analytics endpoint performs dual-resolution: it tries both interpretations automatically. However, using the explicit parameter makes your intent clear and avoids ambiguity in the response's `resolved_as` field.
|
|
232
|
+
|
|
233
|
+
Passing both parameters returns a validation error. Passing neither also returns a validation error.
|
|
234
|
+
|
|
235
|
+
```json
|
|
236
|
+
// Query by credential (api_key_id)
|
|
237
|
+
{
|
|
238
|
+
"tool": "knowledge_agent_usage",
|
|
239
|
+
"arguments": {
|
|
240
|
+
"api_key_id": "b977c90c-061b-4e42-8afa-26a5efde51ad",
|
|
241
|
+
"since_days": 7
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
// Query by logical agent identity (agent_id)
|
|
246
|
+
{
|
|
247
|
+
"tool": "knowledge_agent_usage",
|
|
248
|
+
"arguments": {
|
|
249
|
+
"agent_id": "09429bc4-328f-42f4-acec-db48b40849b2",
|
|
250
|
+
"since_days": 30
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
#### Deprecated: old `agent_id` behavior
|
|
256
|
+
|
|
257
|
+
In versions before 1.2.0, `knowledge_agent_usage` accepted a single `agent_id` parameter that actually meant the `api_keys.id` credential (not the logical agent). This was confusing and caused silent zero-result responses when callers passed a logical `agents.id` value.
|
|
258
|
+
|
|
259
|
+
Starting with 1.2.0:
|
|
260
|
+
- `agent_id` means the **logical** `agents.id` (the agent registry entry).
|
|
261
|
+
- `api_key_id` means the **credential** `api_keys.id` (the raw API key).
|
|
262
|
+
- The old behavior (passing `agent_id` meaning credential) is Deprecated and will be removed in a future release. When you call with `agent_id` alone, the response includes a `_meta.deprecation_hint` nudging you toward explicit parameters.
|
|
263
|
+
|
|
167
264
|
## Chain-of-Custody Enforcement
|
|
168
265
|
|
|
169
266
|
loopctl enforces that nobody marks their own work as done. The API returns `409` if the caller's identity matches the story's assigned agent:
|
package/index.js
CHANGED
|
@@ -416,17 +416,22 @@ async function setTokenBudget({ scope_type, scope_id, budget_millicents, alert_t
|
|
|
416
416
|
|
|
417
417
|
// --- Knowledge Wiki Tools (agent key) ---
|
|
418
418
|
|
|
419
|
-
async function knowledgeIndex({ project_id }) {
|
|
420
|
-
const
|
|
419
|
+
async function knowledgeIndex({ project_id, story_id }) {
|
|
420
|
+
const basePath = project_id
|
|
421
421
|
? `/api/v1/projects/${project_id}/knowledge/index`
|
|
422
422
|
: "/api/v1/knowledge/index";
|
|
423
|
+
const params = new URLSearchParams();
|
|
424
|
+
if (story_id) params.set("story_id", story_id);
|
|
425
|
+
const qs = params.toString();
|
|
426
|
+
const path = qs ? `${basePath}?${qs}` : basePath;
|
|
423
427
|
const result = await apiCall("GET", path, null, process.env.LOOPCTL_AGENT_KEY);
|
|
424
428
|
return toContent(result);
|
|
425
429
|
}
|
|
426
430
|
|
|
427
|
-
async function knowledgeSearch({ q, project_id, category, tags, mode, limit }) {
|
|
431
|
+
async function knowledgeSearch({ q, project_id, story_id, category, tags, mode, limit }) {
|
|
428
432
|
const params = new URLSearchParams({ q });
|
|
429
433
|
if (project_id) params.set("project_id", project_id);
|
|
434
|
+
if (story_id) params.set("story_id", story_id);
|
|
430
435
|
if (category) params.set("category", category);
|
|
431
436
|
if (tags) params.set("tags", tags);
|
|
432
437
|
if (mode) params.set("mode", mode);
|
|
@@ -436,14 +441,20 @@ async function knowledgeSearch({ q, project_id, category, tags, mode, limit }) {
|
|
|
436
441
|
return toContent(result);
|
|
437
442
|
}
|
|
438
443
|
|
|
439
|
-
async function knowledgeGet({ article_id }) {
|
|
440
|
-
const
|
|
444
|
+
async function knowledgeGet({ article_id, project_id, story_id }) {
|
|
445
|
+
const params = new URLSearchParams();
|
|
446
|
+
if (project_id) params.set("project_id", project_id);
|
|
447
|
+
if (story_id) params.set("story_id", story_id);
|
|
448
|
+
const qs = params.toString();
|
|
449
|
+
const path = qs ? `/api/v1/articles/${article_id}?${qs}` : `/api/v1/articles/${article_id}`;
|
|
450
|
+
const result = await apiCall("GET", path, null, process.env.LOOPCTL_AGENT_KEY);
|
|
441
451
|
return toContent(result);
|
|
442
452
|
}
|
|
443
453
|
|
|
444
|
-
async function knowledgeContext({ query, project_id, limit, recency_weight }) {
|
|
454
|
+
async function knowledgeContext({ query, project_id, story_id, limit, recency_weight }) {
|
|
445
455
|
const params = new URLSearchParams({ query });
|
|
446
456
|
if (project_id) params.set("project_id", project_id);
|
|
457
|
+
if (story_id) params.set("story_id", story_id);
|
|
447
458
|
if (limit != null) params.set("limit", String(limit));
|
|
448
459
|
if (recency_weight != null) params.set("recency_weight", String(recency_weight));
|
|
449
460
|
|
|
@@ -564,15 +575,70 @@ async function knowledgeArticleStats({ article_id }) {
|
|
|
564
575
|
return toContent(result);
|
|
565
576
|
}
|
|
566
577
|
|
|
567
|
-
|
|
578
|
+
// Canonical 8-4-4-4-12 UUID shape. Used to reject path-injection attempts
|
|
579
|
+
// in tools that interpolate user-supplied IDs into URL path segments.
|
|
580
|
+
const UUID_RE = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/;
|
|
581
|
+
|
|
582
|
+
async function knowledgeAgentUsage({ api_key_id, agent_id, limit, since_days } = {}) {
|
|
583
|
+
// Normalize: treat empty strings / whitespace-only strings as missing so the
|
|
584
|
+
// validation below catches them. Otherwise an empty string would slip past
|
|
585
|
+
// the `!= null` checks and produce a malformed URL like /agents/.
|
|
586
|
+
const normalizedApiKeyId =
|
|
587
|
+
typeof api_key_id === "string" && api_key_id.trim() === "" ? null : api_key_id;
|
|
588
|
+
const normalizedAgentId =
|
|
589
|
+
typeof agent_id === "string" && agent_id.trim() === "" ? null : agent_id;
|
|
590
|
+
|
|
591
|
+
// Validate: exactly one of api_key_id or agent_id must be provided.
|
|
592
|
+
if (normalizedApiKeyId != null && normalizedAgentId != null) {
|
|
593
|
+
return {
|
|
594
|
+
content: [{ type: "text", text: "Error: pass exactly one of api_key_id or agent_id, not both. Use api_key_id for the api_keys.id credential; use agent_id for the agents.id logical identity." }],
|
|
595
|
+
isError: true,
|
|
596
|
+
};
|
|
597
|
+
}
|
|
598
|
+
if (normalizedApiKeyId == null && normalizedAgentId == null) {
|
|
599
|
+
return {
|
|
600
|
+
content: [{ type: "text", text: "Error: pass exactly one of api_key_id or agent_id. Use api_key_id for the api_keys.id credential; use agent_id for the agents.id logical identity." }],
|
|
601
|
+
isError: true,
|
|
602
|
+
};
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
const resolvedId = normalizedApiKeyId ?? normalizedAgentId;
|
|
606
|
+
|
|
607
|
+
// Defense-in-depth: the MCP SDK declares `format: "uuid"` on these schemas
|
|
608
|
+
// but does not enforce it for tool arguments. Because `resolvedId` is
|
|
609
|
+
// interpolated directly into a URL path segment, a value containing `/`
|
|
610
|
+
// or `..` would let `fetch()` normalize the request to a different
|
|
611
|
+
// endpoint. Reject anything that isn't a canonical UUID before we touch
|
|
612
|
+
// the network.
|
|
613
|
+
if (typeof resolvedId !== "string" || !UUID_RE.test(resolvedId)) {
|
|
614
|
+
const which = normalizedApiKeyId != null ? "api_key_id" : "agent_id";
|
|
615
|
+
return {
|
|
616
|
+
content: [{ type: "text", text: `Error: ${which} must be a canonical UUID (8-4-4-4-12 hex).` }],
|
|
617
|
+
isError: true,
|
|
618
|
+
};
|
|
619
|
+
}
|
|
568
620
|
const params = new URLSearchParams();
|
|
569
621
|
if (limit != null) params.set("limit", String(limit));
|
|
570
622
|
if (since_days != null) params.set("since_days", String(since_days));
|
|
571
623
|
const qs = params.toString();
|
|
572
624
|
const path = qs
|
|
573
|
-
? `/api/v1/knowledge/analytics/agents/${
|
|
574
|
-
: `/api/v1/knowledge/analytics/agents/${
|
|
625
|
+
? `/api/v1/knowledge/analytics/agents/${resolvedId}?${qs}`
|
|
626
|
+
: `/api/v1/knowledge/analytics/agents/${resolvedId}`;
|
|
575
627
|
const result = await apiCall("GET", path, null, process.env.LOOPCTL_ORCH_KEY);
|
|
628
|
+
|
|
629
|
+
// When agent_id alone is passed (new semantic: logical agents.id), emit a
|
|
630
|
+
// one-release-cycle nudge so callers can be explicit about their intent.
|
|
631
|
+
if (normalizedAgentId != null && normalizedApiKeyId == null) {
|
|
632
|
+
const base = toContent(result);
|
|
633
|
+
return {
|
|
634
|
+
...base,
|
|
635
|
+
_meta: {
|
|
636
|
+
deprecation_hint:
|
|
637
|
+
"knowledge_agent_usage: if you meant the api_keys.id credential, pass it as api_key_id explicitly. The agent_id parameter now refers to the logical agents.id only.",
|
|
638
|
+
},
|
|
639
|
+
};
|
|
640
|
+
}
|
|
641
|
+
|
|
576
642
|
return toContent(result);
|
|
577
643
|
}
|
|
578
644
|
|
|
@@ -613,6 +679,51 @@ async function listRoutes() {
|
|
|
613
679
|
return toContent(result);
|
|
614
680
|
}
|
|
615
681
|
|
|
682
|
+
// US-26.2.3: Dispatch lineage tool
|
|
683
|
+
async function createDispatch({
|
|
684
|
+
parent_dispatch_id,
|
|
685
|
+
role,
|
|
686
|
+
story_id,
|
|
687
|
+
agent_id,
|
|
688
|
+
expires_in_seconds = 3600,
|
|
689
|
+
}) {
|
|
690
|
+
const body = { role, agent_id, expires_in_seconds };
|
|
691
|
+
if (parent_dispatch_id) body.parent_dispatch_id = parent_dispatch_id;
|
|
692
|
+
if (story_id) body.story_id = story_id;
|
|
693
|
+
|
|
694
|
+
const result = await apiCall("POST", "/api/v1/dispatches", body);
|
|
695
|
+
return toContent(result);
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
// US-26: Signed Tree Head retrieval
|
|
699
|
+
async function getSth({ tenant_id }) {
|
|
700
|
+
const result = await apiCall("GET", `/api/v1/audit/sth/${tenant_id}`);
|
|
701
|
+
return toContent(result);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
// US-26: System article retrieval
|
|
705
|
+
async function getSystemArticles({ slug, category } = {}) {
|
|
706
|
+
const params = new URLSearchParams();
|
|
707
|
+
if (slug) params.set("slug", slug);
|
|
708
|
+
if (category) params.set("category", category);
|
|
709
|
+
const qs = params.toString();
|
|
710
|
+
const result = await apiCall("GET", `/api/v1/articles/system${qs ? "?" + qs : ""}`);
|
|
711
|
+
return toContent(result);
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
// US-26: Cap recovery after session crash
|
|
715
|
+
async function recoverCap({ story_id, cap_type, lineage }) {
|
|
716
|
+
const body = { cap_type: cap_type || "start_cap", lineage: lineage || [] };
|
|
717
|
+
const result = await apiCall("POST", `/api/v1/stories/${story_id}/recover-cap`, body);
|
|
718
|
+
return toContent(result);
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
// US-26: Acceptance criteria for a story
|
|
722
|
+
async function getAcceptanceCriteria({ story_id }) {
|
|
723
|
+
const result = await apiCall("GET", `/api/v1/stories/${story_id}/acceptance_criteria`);
|
|
724
|
+
return toContent(result);
|
|
725
|
+
}
|
|
726
|
+
|
|
616
727
|
// ---------------------------------------------------------------------------
|
|
617
728
|
// Tool definitions
|
|
618
729
|
// ---------------------------------------------------------------------------
|
|
@@ -1177,15 +1288,21 @@ const TOOLS = [
|
|
|
1177
1288
|
{
|
|
1178
1289
|
name: "knowledge_index",
|
|
1179
1290
|
description:
|
|
1180
|
-
"Load the knowledge wiki catalog at session start. Returns
|
|
1181
|
-
"
|
|
1291
|
+
"Load the knowledge wiki catalog at session start. Returns article metadata grouped by category. " +
|
|
1292
|
+
"Pass story_id when working on a loopctl story so reads attribute correctly.",
|
|
1182
1293
|
inputSchema: {
|
|
1183
1294
|
type: "object",
|
|
1184
1295
|
properties: {
|
|
1185
1296
|
project_id: {
|
|
1186
1297
|
type: "string",
|
|
1298
|
+
format: "uuid",
|
|
1187
1299
|
description: "Optional: scope the index to a specific project UUID.",
|
|
1188
1300
|
},
|
|
1301
|
+
story_id: {
|
|
1302
|
+
type: "string",
|
|
1303
|
+
format: "uuid",
|
|
1304
|
+
description: "Optional: loopctl story UUID for attribution tracking.",
|
|
1305
|
+
},
|
|
1189
1306
|
},
|
|
1190
1307
|
required: [],
|
|
1191
1308
|
},
|
|
@@ -1193,8 +1310,8 @@ const TOOLS = [
|
|
|
1193
1310
|
{
|
|
1194
1311
|
name: "knowledge_search",
|
|
1195
1312
|
description:
|
|
1196
|
-
"Search the knowledge wiki by topic.
|
|
1197
|
-
"
|
|
1313
|
+
"Search the knowledge wiki by topic. Returns snippets. " +
|
|
1314
|
+
"Pass story_id when working on a loopctl story so reads attribute correctly.",
|
|
1198
1315
|
inputSchema: {
|
|
1199
1316
|
type: "object",
|
|
1200
1317
|
properties: {
|
|
@@ -1204,8 +1321,14 @@ const TOOLS = [
|
|
|
1204
1321
|
},
|
|
1205
1322
|
project_id: {
|
|
1206
1323
|
type: "string",
|
|
1324
|
+
format: "uuid",
|
|
1207
1325
|
description: "Optional: scope search to a specific project UUID.",
|
|
1208
1326
|
},
|
|
1327
|
+
story_id: {
|
|
1328
|
+
type: "string",
|
|
1329
|
+
format: "uuid",
|
|
1330
|
+
description: "Optional: loopctl story UUID for attribution tracking.",
|
|
1331
|
+
},
|
|
1209
1332
|
category: {
|
|
1210
1333
|
type: "string",
|
|
1211
1334
|
description: "Optional: filter results by category.",
|
|
@@ -1230,14 +1353,26 @@ const TOOLS = [
|
|
|
1230
1353
|
{
|
|
1231
1354
|
name: "knowledge_get",
|
|
1232
1355
|
description:
|
|
1233
|
-
"Get full article content by ID. Use after search to read an article in detail."
|
|
1356
|
+
"Get full article content by ID. Use after search to read an article in detail. " +
|
|
1357
|
+
"Pass story_id when working on a loopctl story so reads attribute correctly.",
|
|
1234
1358
|
inputSchema: {
|
|
1235
1359
|
type: "object",
|
|
1236
1360
|
properties: {
|
|
1237
1361
|
article_id: {
|
|
1238
1362
|
type: "string",
|
|
1363
|
+
format: "uuid",
|
|
1239
1364
|
description: "The UUID of the article.",
|
|
1240
1365
|
},
|
|
1366
|
+
project_id: {
|
|
1367
|
+
type: "string",
|
|
1368
|
+
format: "uuid",
|
|
1369
|
+
description: "Optional: project UUID for attribution tracking.",
|
|
1370
|
+
},
|
|
1371
|
+
story_id: {
|
|
1372
|
+
type: "string",
|
|
1373
|
+
format: "uuid",
|
|
1374
|
+
description: "Optional: loopctl story UUID for attribution tracking.",
|
|
1375
|
+
},
|
|
1241
1376
|
},
|
|
1242
1377
|
required: ["article_id"],
|
|
1243
1378
|
},
|
|
@@ -1245,8 +1380,8 @@ const TOOLS = [
|
|
|
1245
1380
|
{
|
|
1246
1381
|
name: "knowledge_context",
|
|
1247
1382
|
description:
|
|
1248
|
-
"Get
|
|
1249
|
-
"
|
|
1383
|
+
"Get ranked full articles for a task query. Returns best knowledge with linked references. " +
|
|
1384
|
+
"Pass story_id when working on a loopctl story so reads attribute correctly.",
|
|
1250
1385
|
inputSchema: {
|
|
1251
1386
|
type: "object",
|
|
1252
1387
|
properties: {
|
|
@@ -1256,8 +1391,14 @@ const TOOLS = [
|
|
|
1256
1391
|
},
|
|
1257
1392
|
project_id: {
|
|
1258
1393
|
type: "string",
|
|
1394
|
+
format: "uuid",
|
|
1259
1395
|
description: "Optional: scope context to a specific project UUID.",
|
|
1260
1396
|
},
|
|
1397
|
+
story_id: {
|
|
1398
|
+
type: "string",
|
|
1399
|
+
format: "uuid",
|
|
1400
|
+
description: "Optional: loopctl story UUID for attribution tracking.",
|
|
1401
|
+
},
|
|
1261
1402
|
limit: {
|
|
1262
1403
|
type: "integer",
|
|
1263
1404
|
description: "Optional: maximum number of articles to return.",
|
|
@@ -1566,15 +1707,21 @@ const TOOLS = [
|
|
|
1566
1707
|
{
|
|
1567
1708
|
name: "knowledge_agent_usage",
|
|
1568
1709
|
description:
|
|
1569
|
-
"Return knowledge usage for
|
|
1570
|
-
"
|
|
1710
|
+
"Return knowledge usage for an agent: total reads, unique articles, top read articles. " +
|
|
1711
|
+
"Pass api_key_id (api_keys.id credential) OR agent_id (agents.id logical identity) — not both. " +
|
|
1571
1712
|
"Requires orchestrator role.",
|
|
1572
1713
|
inputSchema: {
|
|
1573
1714
|
type: "object",
|
|
1574
1715
|
properties: {
|
|
1716
|
+
api_key_id: {
|
|
1717
|
+
type: "string",
|
|
1718
|
+
format: "uuid",
|
|
1719
|
+
description: "The api_keys.id credential UUID. Use this when you have the raw API key ID.",
|
|
1720
|
+
},
|
|
1575
1721
|
agent_id: {
|
|
1576
1722
|
type: "string",
|
|
1577
|
-
|
|
1723
|
+
format: "uuid",
|
|
1724
|
+
description: "The agents.id logical identity UUID. Use this when you have the agent registry ID.",
|
|
1578
1725
|
},
|
|
1579
1726
|
limit: {
|
|
1580
1727
|
type: "integer",
|
|
@@ -1589,7 +1736,7 @@ const TOOLS = [
|
|
|
1589
1736
|
maximum: 365,
|
|
1590
1737
|
},
|
|
1591
1738
|
},
|
|
1592
|
-
required: [
|
|
1739
|
+
required: [],
|
|
1593
1740
|
},
|
|
1594
1741
|
},
|
|
1595
1742
|
{
|
|
@@ -1627,6 +1774,91 @@ const TOOLS = [
|
|
|
1627
1774
|
required: [],
|
|
1628
1775
|
},
|
|
1629
1776
|
},
|
|
1777
|
+
|
|
1778
|
+
// Dispatch Tool (US-26.2.3)
|
|
1779
|
+
{
|
|
1780
|
+
name: "dispatch",
|
|
1781
|
+
description:
|
|
1782
|
+
"Mint an ephemeral api_key for a sub-agent dispatch. " +
|
|
1783
|
+
"The raw_key is returned ONCE — pass it to the sub-agent via its launch arguments, " +
|
|
1784
|
+
"never store it in env vars. The key expires after expires_in_seconds.",
|
|
1785
|
+
inputSchema: {
|
|
1786
|
+
type: "object",
|
|
1787
|
+
properties: {
|
|
1788
|
+
parent_dispatch_id: {
|
|
1789
|
+
type: "string",
|
|
1790
|
+
description: "UUID of the parent dispatch (omit for root dispatch).",
|
|
1791
|
+
},
|
|
1792
|
+
role: {
|
|
1793
|
+
type: "string",
|
|
1794
|
+
enum: ["agent", "orchestrator"],
|
|
1795
|
+
description: "Role for the sub-agent.",
|
|
1796
|
+
},
|
|
1797
|
+
story_id: {
|
|
1798
|
+
type: "string",
|
|
1799
|
+
description: "Optional: UUID of the story this dispatch is for.",
|
|
1800
|
+
},
|
|
1801
|
+
agent_id: {
|
|
1802
|
+
type: "string",
|
|
1803
|
+
description: "UUID of the agent being dispatched.",
|
|
1804
|
+
},
|
|
1805
|
+
expires_in_seconds: {
|
|
1806
|
+
type: "integer",
|
|
1807
|
+
description: "Key lifetime in seconds (default 3600, max 14400).",
|
|
1808
|
+
default: 3600,
|
|
1809
|
+
},
|
|
1810
|
+
},
|
|
1811
|
+
required: ["role", "agent_id"],
|
|
1812
|
+
},
|
|
1813
|
+
},
|
|
1814
|
+
|
|
1815
|
+
// Chain of Custody v2 tools
|
|
1816
|
+
{
|
|
1817
|
+
name: "get_sth",
|
|
1818
|
+
description: "Get the latest Signed Tree Head for a tenant's audit chain. Public — no auth required.",
|
|
1819
|
+
inputSchema: {
|
|
1820
|
+
type: "object",
|
|
1821
|
+
properties: {
|
|
1822
|
+
tenant_id: { type: "string", description: "Tenant UUID." },
|
|
1823
|
+
},
|
|
1824
|
+
required: ["tenant_id"],
|
|
1825
|
+
},
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
name: "get_system_articles",
|
|
1829
|
+
description: "List or retrieve system-scoped wiki articles. Public — no auth required.",
|
|
1830
|
+
inputSchema: {
|
|
1831
|
+
type: "object",
|
|
1832
|
+
properties: {
|
|
1833
|
+
slug: { type: "string", description: "Optional: fetch a single article by slug." },
|
|
1834
|
+
category: { type: "string", description: "Optional: filter by category (pattern, convention, decision, finding, reference)." },
|
|
1835
|
+
},
|
|
1836
|
+
},
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
name: "recover_cap",
|
|
1840
|
+
description: "Re-mint a capability token for a story you're assigned to. Use after a session crash when you've lost your cap.",
|
|
1841
|
+
inputSchema: {
|
|
1842
|
+
type: "object",
|
|
1843
|
+
properties: {
|
|
1844
|
+
story_id: { type: "string", description: "Story UUID." },
|
|
1845
|
+
cap_type: { type: "string", enum: ["start_cap", "report_cap"], description: "Which cap to recover (default: start_cap)." },
|
|
1846
|
+
lineage: { type: "array", items: { type: "string" }, description: "Your dispatch lineage path." },
|
|
1847
|
+
},
|
|
1848
|
+
required: ["story_id"],
|
|
1849
|
+
},
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
name: "get_acceptance_criteria",
|
|
1853
|
+
description: "List acceptance criteria for a story with their verification status.",
|
|
1854
|
+
inputSchema: {
|
|
1855
|
+
type: "object",
|
|
1856
|
+
properties: {
|
|
1857
|
+
story_id: { type: "string", description: "Story UUID." },
|
|
1858
|
+
},
|
|
1859
|
+
required: ["story_id"],
|
|
1860
|
+
},
|
|
1861
|
+
},
|
|
1630
1862
|
];
|
|
1631
1863
|
|
|
1632
1864
|
// ---------------------------------------------------------------------------
|
|
@@ -1636,7 +1868,7 @@ const TOOLS = [
|
|
|
1636
1868
|
const server = new Server(
|
|
1637
1869
|
{
|
|
1638
1870
|
name: "loopctl",
|
|
1639
|
-
version: "1.
|
|
1871
|
+
version: "1.2.0",
|
|
1640
1872
|
},
|
|
1641
1873
|
{
|
|
1642
1874
|
capabilities: { tools: {} },
|
|
@@ -1789,6 +2021,21 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
1789
2021
|
case "list_routes":
|
|
1790
2022
|
return await listRoutes();
|
|
1791
2023
|
|
|
2024
|
+
case "dispatch":
|
|
2025
|
+
return await createDispatch(args);
|
|
2026
|
+
|
|
2027
|
+
case "get_sth":
|
|
2028
|
+
return await getSth(args);
|
|
2029
|
+
|
|
2030
|
+
case "get_system_articles":
|
|
2031
|
+
return await getSystemArticles(args);
|
|
2032
|
+
|
|
2033
|
+
case "recover_cap":
|
|
2034
|
+
return await recoverCap(args);
|
|
2035
|
+
|
|
2036
|
+
case "get_acceptance_criteria":
|
|
2037
|
+
return await getAcceptanceCriteria(args);
|
|
2038
|
+
|
|
1792
2039
|
default:
|
|
1793
2040
|
throw new Error(`Unknown tool: ${name}`);
|
|
1794
2041
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loopctl-mcp-server",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "MCP server for loopctl — structural trust for AI development loops",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"loopctl-mcp-server": "index.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"start": "node index.js"
|
|
11
|
+
"start": "node index.js",
|
|
12
|
+
"test": "node --test"
|
|
12
13
|
},
|
|
13
14
|
"keywords": [
|
|
14
15
|
"mcp",
|