@atlaskit/ads-mcp 0.13.9 → 0.15.0

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/esm/index.js CHANGED
@@ -15,6 +15,7 @@ import { getAllIconsTool, listGetAllIconsTool } from './tools/get-all-icons';
15
15
  import { getAllTokensTool, listGetAllTokensTool } from './tools/get-all-tokens';
16
16
  import { getComponentsTool, listGetComponentsTool } from './tools/get-components';
17
17
  import { getIconsInputSchema, getIconsTool, listGetIconsTool } from './tools/get-icons';
18
+ import { getLintRulesInputSchema, getLintRulesTool, listGetLintRulesTool } from './tools/get-lint-rules';
18
19
  import { getTokensInputSchema, getTokensTool, listGetTokensTool } from './tools/get-tokens';
19
20
  import { i18nConversionInputSchema, i18nConversionTool, listI18nConversionTool } from './tools/i18n-conversion';
20
21
  import { listMigrationGuidesTool, migrationGuidesInputSchema, migrationGuidesTool } from './tools/migration-guides';
@@ -102,6 +103,11 @@ export var getToolRegistry = function getToolRegistry() {
102
103
  inputSchema: getIconsInputSchema,
103
104
  tool: listGetIconsTool
104
105
  };
106
+ baseTools[listGetLintRulesTool.name] = {
107
+ handler: getLintRulesTool,
108
+ inputSchema: getLintRulesInputSchema,
109
+ tool: listGetLintRulesTool
110
+ };
105
111
  } else {
106
112
  baseTools[listGetAllTokensTool.name] = {
107
113
  handler: getAllTokensTool,