@ductape/mcp 0.1.61 → 0.2.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/CHANGELOG.md +14 -0
- package/README.md +18 -0
- package/dist/index.js +654 -18
- package/docs/TOOLS.md +14 -0
- package/package.json +7 -1
- package/scripts/check-frontend-analytics-guidance.mjs +0 -99
- package/src/index.ts +0 -4318
- package/src/proxy-client.ts +0 -172
- package/tsconfig.json +0 -17
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
- Broadened Feature guidance from durable/event-driven workflows to synchronous or asynchronous named product capabilities.
|
|
6
|
+
- Added evidence-backed `FEATURE`, `FEATURE_STEP`, `DOMAIN_SERVICE`, `UTILITY`, and `INFRASTRUCTURE_ADAPTER` classification guidance.
|
|
7
|
+
- Added synchronous multi-step examples and repository discovery/grouping rules.
|
|
8
|
+
|
|
9
|
+
## 0.2.0 - 2026-07-26
|
|
10
|
+
|
|
11
|
+
- Added exhaustive AI-led migration guidance for TypeScript, Go, Java, and .NET.
|
|
12
|
+
- Added original E2E gates, contextual review, semantic database and frontend guidance, and strict verification matrices.
|
|
13
|
+
- Added dependency-aware large-repository guidance.
|
|
14
|
+
- Reinforced the administrative CLI/runtime execute boundary and access-key isolation.
|
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Ductape MCP Server
|
|
2
2
|
|
|
3
|
+
Migration guidance is available from `ductape_docs({ topic: "migration" })`. It starts with an original E2E
|
|
4
|
+
baseline, defaults to a separate new codebase, requires contextual review and strict parity evidence, and ends
|
|
5
|
+
against the unchanged original E2E suite. Administrative work and marketplace discovery use `ductape_cli`; `ductape_execute` remains
|
|
6
|
+
publishable-key runtime-only. MCP never accepts or forwards `DUCTAPE_ACCESS_KEY`.
|
|
7
|
+
|
|
3
8
|
MCP (Model Context Protocol) server that exposes **Ductape SDK** operations as tools. All calls go through the **Ductape backend proxy** at a fixed URL; the SDK never runs in the MCP process. It is completely stateless; you provide your **Publishable Key** per execution.
|
|
4
9
|
|
|
5
10
|
## Prerequisites
|
|
@@ -77,6 +82,19 @@ The server exposes **three tools**:
|
|
|
77
82
|
- ready-to-copy SDK snippet in `typescript` or `python`
|
|
78
83
|
- Intended for engineers and copilots that need executable examples quickly.
|
|
79
84
|
|
|
85
|
+
The `ductape_cli` MCP tool also exposes public app discovery:
|
|
86
|
+
`marketplace search <capability>`, `marketplace categories`, and
|
|
87
|
+
`marketplace get <app_tag>`. Inspect the app before generating or executing an action payload.
|
|
88
|
+
|
|
89
|
+
## Feature classification
|
|
90
|
+
|
|
91
|
+
`ductape_docs({ topic: "features" })` treats a Feature as a named, reusable product capability
|
|
92
|
+
with a stable input/output contract and a useful managed-execution boundary. Features may be
|
|
93
|
+
synchronous and entirely local; Events, signals, schedules, waits, retries, and rollback are
|
|
94
|
+
optional patterns. Repository analysis distinguishes `FEATURE`, `FEATURE_STEP`, `DOMAIN_SERVICE`,
|
|
95
|
+
`UTILITY`, and `INFRASTRUCTURE_ADAPTER`, explains its evidence, and groups related low-level
|
|
96
|
+
operations instead of turning every exported function into a Feature.
|
|
97
|
+
|
|
80
98
|
## Security
|
|
81
99
|
|
|
82
100
|
- Passing the `publishable_key` on a per-request basis guarantees that each execution is isolated. This architecture safely supports deployments that multiplex multiple user connections in a single server thread (e.g., SSE), avoiding cross-tenant leakage.
|