@donkeylabs/mcp 2.0.8 → 2.0.9
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/package.json +2 -2
- package/src/server.ts +49 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@donkeylabs/mcp",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"description": "MCP server for AI-assisted development with @donkeylabs/server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/server.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"start": "bun run src/server.ts"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
26
|
+
"@modelcontextprotocol/sdk": "^1.25.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@anthropic-ai/claude-agent-sdk": "^0.2.9",
|
package/src/server.ts
CHANGED
|
@@ -408,6 +408,55 @@ const RESOURCES = [
|
|
|
408
408
|
mimeType: "text/markdown",
|
|
409
409
|
docFile: "api-client.md",
|
|
410
410
|
},
|
|
411
|
+
{
|
|
412
|
+
uri: "donkeylabs://docs/workflows",
|
|
413
|
+
name: "Workflows",
|
|
414
|
+
description: "State machine orchestration for multi-step processes with parallel execution, conditional branching, and retries",
|
|
415
|
+
mimeType: "text/markdown",
|
|
416
|
+
docFile: "workflows.md",
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
uri: "donkeylabs://docs/processes",
|
|
420
|
+
name: "Processes Service",
|
|
421
|
+
description: "Long-running daemon management with typed events, heartbeat monitoring, and auto-restart",
|
|
422
|
+
mimeType: "text/markdown",
|
|
423
|
+
docFile: "processes.md",
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
uri: "donkeylabs://docs/external-jobs",
|
|
427
|
+
name: "External Jobs",
|
|
428
|
+
description: "Running jobs in external processes for isolation and language-agnostic workers",
|
|
429
|
+
mimeType: "text/markdown",
|
|
430
|
+
docFile: "external-jobs.md",
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
uri: "donkeylabs://docs/services",
|
|
434
|
+
name: "Custom Services",
|
|
435
|
+
description: "Creating custom services that integrate with the server lifecycle",
|
|
436
|
+
mimeType: "text/markdown",
|
|
437
|
+
docFile: "services.md",
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
uri: "donkeylabs://docs/lifecycle-hooks",
|
|
441
|
+
name: "Lifecycle Hooks",
|
|
442
|
+
description: "Server startup, shutdown, and request lifecycle hooks",
|
|
443
|
+
mimeType: "text/markdown",
|
|
444
|
+
docFile: "lifecycle-hooks.md",
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
uri: "donkeylabs://docs/sveltekit-adapter",
|
|
448
|
+
name: "SvelteKit Adapter",
|
|
449
|
+
description: "Integrating @donkeylabs/server with SvelteKit applications",
|
|
450
|
+
mimeType: "text/markdown",
|
|
451
|
+
docFile: "sveltekit-adapter.md",
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
uri: "donkeylabs://docs/testing",
|
|
455
|
+
name: "Testing",
|
|
456
|
+
description: "Test harness for unit and integration testing of routes and plugins",
|
|
457
|
+
mimeType: "text/markdown",
|
|
458
|
+
docFile: "testing.md",
|
|
459
|
+
},
|
|
411
460
|
{
|
|
412
461
|
uri: "donkeylabs://project/current",
|
|
413
462
|
name: "Current Project Analysis",
|