@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.
@@ -12,6 +12,7 @@ import { getAllIconsTool, listGetAllIconsTool } from './tools/get-all-icons';
12
12
  import { getAllTokensTool, listGetAllTokensTool } from './tools/get-all-tokens';
13
13
  import { getComponentsTool, listGetComponentsTool } from './tools/get-components';
14
14
  import { getIconsInputSchema, getIconsTool, listGetIconsTool } from './tools/get-icons';
15
+ import { getLintRulesInputSchema, getLintRulesTool, listGetLintRulesTool } from './tools/get-lint-rules';
15
16
  import { getTokensInputSchema, getTokensTool, listGetTokensTool } from './tools/get-tokens';
16
17
  import { i18nConversionInputSchema, i18nConversionTool, listI18nConversionTool } from './tools/i18n-conversion';
17
18
  import { listMigrationGuidesTool, migrationGuidesInputSchema, migrationGuidesTool } from './tools/migration-guides';
@@ -119,6 +120,11 @@ export const getToolRegistry = () => {
119
120
  inputSchema: getIconsInputSchema,
120
121
  tool: listGetIconsTool
121
122
  };
123
+ baseTools[listGetLintRulesTool.name] = {
124
+ handler: getLintRulesTool,
125
+ inputSchema: getLintRulesInputSchema,
126
+ tool: listGetLintRulesTool
127
+ };
122
128
  } else {
123
129
  baseTools[listGetAllTokensTool.name] = {
124
130
  handler: getAllTokensTool,