@mrrlin-dev/mcp 0.3.9 → 0.3.10

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.
Files changed (2) hide show
  1. package/dist/bin.cjs +3 -3
  2. package/package.json +1 -1
package/dist/bin.cjs CHANGED
@@ -38514,7 +38514,7 @@ Do NOT derail the current task \u2014 if the operator has an in-flight question,
38514
38514
  }
38515
38515
 
38516
38516
  // src/_generated/version.ts
38517
- var PKG_VERSION = "0.3.9";
38517
+ var PKG_VERSION = "0.3.10";
38518
38518
 
38519
38519
  // src/api-base-url.ts
38520
38520
  var DEFAULT_API_BASE_URL = "http://127.0.0.1:8787";
@@ -51716,8 +51716,8 @@ function createMrrlinTools(options) {
51716
51716
  // follow-up (see Task D2d notes).
51717
51717
  async (c, { projectSlug, pageId, ready }) => {
51718
51718
  if (ready !== true) return await c.markSpecReady({ projectSlug, pageId, ready });
51719
- const settings = await c.getOperatorSettings();
51720
- if (!settings.consensusEnabled) {
51719
+ const config2 = await c.getConsensusConfig(projectSlug);
51720
+ if (!config2.consensusEnabled) {
51721
51721
  throw new McpToolCodedError(
51722
51722
  "SPEC_CONSENSUS_REQUIRED",
51723
51723
  `Spec ${pageId} cannot be marked ready by the Director while consensus is disabled for this project \u2014 an operator must approve it (web wiki / markSpecReady route). Autonomy is a landing gate, not a license to self-promote.`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrrlin-dev/mcp",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mrrlin-mcp": "dist/bin.cjs"