@utaba/ucm-mcp-server 1.0.2 → 1.0.4
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.
|
@@ -146,7 +146,7 @@ export class PublishArtifactTool extends BaseToolController {
|
|
|
146
146
|
Please verify your input parameters and try again.`);
|
|
147
147
|
}
|
|
148
148
|
if (errorMessage?.includes('Invalid namespace format')) {
|
|
149
|
-
throw new McpError(McpErrorCode.InvalidParams, `Invalid namespace format: "${
|
|
149
|
+
throw new McpError(McpErrorCode.InvalidParams, `Invalid namespace format: "${errorMessage}". The namespace must follow the pattern "${this.publishingAuthorId || 'author'}/repository/category/subcategory" where repository is 'main' (for MVP) and category is one of: commands, services, patterns, implementations, contracts, guidance, project. Example: "${this.publishingAuthorId || '0000000000'}/main/commands/user"`);
|
|
150
150
|
}
|
|
151
151
|
throw error;
|
|
152
152
|
}
|
|
@@ -7,7 +7,7 @@ export class QuickstartTool extends BaseToolController {
|
|
|
7
7
|
return 'mcp_ucm_quickstart';
|
|
8
8
|
}
|
|
9
9
|
get description() {
|
|
10
|
-
return '
|
|
10
|
+
return '**IMPORTANT** READ THIS FIRST before using any other tools as it will guide you to understand how to use the UCM system and MCP tools effectively';
|
|
11
11
|
}
|
|
12
12
|
get inputSchema() {
|
|
13
13
|
return {
|
package/package.json
CHANGED