@codazen/harmonica-mcp 0.28.0 → 0.28.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/dist/index.js +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -23271,7 +23271,7 @@ function registerDropTools(server, ctx, client) {
|
|
|
23271
23271
|
);
|
|
23272
23272
|
server.tool(
|
|
23273
23273
|
"add_revision_to_drop",
|
|
23274
|
-
"Assign a Beat Revision to a Drop. Single-membership rule: a Revision can only belong to one *active* Drop (draft/scheduled/in_progress) at a time. Re-assignment from a released or rolled_back Drop is allowed. The target Drop must be
|
|
23274
|
+
"Assign a Beat Revision to a Drop. Single-membership rule: a Revision can only belong to one *active* Drop (draft/scheduled/in_progress) at a time. Re-assignment from a released or rolled_back Drop is allowed. The target Drop must not be `released` or `rolled_back`.",
|
|
23275
23275
|
{
|
|
23276
23276
|
dropId: external_exports.string().describe("The Drop ID"),
|
|
23277
23277
|
revisionId: external_exports.string().describe("The Revision ID (e.g. rev-abc123)")
|
|
@@ -23320,7 +23320,7 @@ function registerDropTools(server, ctx, client) {
|
|
|
23320
23320
|
);
|
|
23321
23321
|
server.tool(
|
|
23322
23322
|
"remove_revision_from_drop",
|
|
23323
|
-
"Remove a Beat Revision from a Drop.
|
|
23323
|
+
"Remove a Beat Revision from a Drop. Not allowed once the Drop is `released` or `rolled_back`.",
|
|
23324
23324
|
{
|
|
23325
23325
|
dropId: external_exports.string().describe("The Drop ID"),
|
|
23326
23326
|
revisionId: external_exports.string().describe("The Revision ID")
|
|
@@ -23343,7 +23343,7 @@ function registerDropTools(server, ctx, client) {
|
|
|
23343
23343
|
);
|
|
23344
23344
|
server.tool(
|
|
23345
23345
|
"add_beat_version_to_drop",
|
|
23346
|
-
"Assign a Beat Version to a Drop. Single-membership rule: a Beat Version can only belong to one *active* Drop (draft/scheduled/in_progress) at a time. Re-assignment from a released or rolled_back Drop is allowed. The target Drop must be
|
|
23346
|
+
"Assign a Beat Version to a Drop. Single-membership rule: a Beat Version can only belong to one *active* Drop (draft/scheduled/in_progress) at a time. Re-assignment from a released or rolled_back Drop is allowed. The target Drop must not be `released` or `rolled_back`.",
|
|
23347
23347
|
{
|
|
23348
23348
|
dropId: external_exports.string().describe("The Drop ID"),
|
|
23349
23349
|
beatVersionId: external_exports.string().describe("The Beat Version ID (e.g. bv-abc123)")
|
|
@@ -23367,7 +23367,7 @@ function registerDropTools(server, ctx, client) {
|
|
|
23367
23367
|
);
|
|
23368
23368
|
server.tool(
|
|
23369
23369
|
"remove_beat_version_from_drop",
|
|
23370
|
-
"Remove a Beat Version from a Drop.
|
|
23370
|
+
"Remove a Beat Version from a Drop. Not allowed once the Drop is `released` or `rolled_back`.",
|
|
23371
23371
|
{
|
|
23372
23372
|
dropId: external_exports.string().describe("The Drop ID"),
|
|
23373
23373
|
beatVersionId: external_exports.string().describe("The Beat Version ID")
|
|
@@ -27406,7 +27406,7 @@ function loadConfig() {
|
|
|
27406
27406
|
};
|
|
27407
27407
|
}
|
|
27408
27408
|
async function main() {
|
|
27409
|
-
console.error(`[harmonica-mcp] v${"0.28.
|
|
27409
|
+
console.error(`[harmonica-mcp] v${"0.28.1"} starting\u2026`);
|
|
27410
27410
|
const config2 = loadConfig();
|
|
27411
27411
|
const client = createHttpClient({
|
|
27412
27412
|
apiBaseUrl: config2.apiBaseUrl,
|