@motorical/mcp 1.1.2 → 1.1.3
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 +1 -1
- package/src/server.js +4 -2
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -2,7 +2,7 @@ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { MotoricalClient, loadConfig } from './client.js';
|
|
4
4
|
|
|
5
|
-
const PACKAGE_VERSION = '1.1.
|
|
5
|
+
const PACKAGE_VERSION = '1.1.3';
|
|
6
6
|
|
|
7
7
|
function jsonResult(data, { isError = false } = {}) {
|
|
8
8
|
return {
|
|
@@ -251,7 +251,9 @@ export function createMotoricalMcpServer(options = {}) {
|
|
|
251
251
|
'motorical_sandbox_convert',
|
|
252
252
|
{
|
|
253
253
|
description:
|
|
254
|
-
'Convert sandbox Motor Block onto a verified customer domain. Requires active Motorical Plan + MOTORICAL_JWT.'
|
|
254
|
+
'Convert sandbox Motor Block onto a verified customer domain. Requires active Motorical Plan + MOTORICAL_JWT. ' +
|
|
255
|
+
'If no sandbox exists yet (check motorical_sandbox_status first — data.stage: "not_started"), call ' +
|
|
256
|
+
'motorical_sandbox_provision instead; this endpoint returns 404 "No developer sandbox to convert" otherwise.',
|
|
255
257
|
inputSchema: {
|
|
256
258
|
domainId: z.string().uuid()
|
|
257
259
|
}
|