@atlaskit/ads-mcp 0.9.0 → 0.9.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @atlaskit/ads-mcp
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`286a209277502`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/286a209277502) -
8
+ update inputSchema type in getToolRegistry
9
+
3
10
  ## 0.9.0
4
11
 
5
12
  ### Minor Changes
@@ -2,7 +2,7 @@ import { type Tool } from '@modelcontextprotocol/sdk/types.js';
2
2
  import type { z } from 'zod';
3
3
  export declare const getToolRegistry: () => Record<string, {
4
4
  handler: (params: any) => Promise<any>;
5
- inputSchema: z.ZodSchema | null;
5
+ inputSchema: z.AnyZodObject | null;
6
6
  tool: Tool;
7
7
  }>;
8
8
  export type { TokenSchema, ContentSchema } from './structured-content/types';
@@ -2,7 +2,7 @@ import { type Tool } from '@modelcontextprotocol/sdk/types.js';
2
2
  import type { z } from 'zod';
3
3
  export declare const getToolRegistry: () => Record<string, {
4
4
  handler: (params: any) => Promise<any>;
5
- inputSchema: z.ZodSchema | null;
5
+ inputSchema: z.AnyZodObject | null;
6
6
  tool: Tool;
7
7
  }>;
8
8
  export type { TokenSchema, ContentSchema } from './structured-content/types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/ads-mcp",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "The official Atlassian Design System MCP server to develop apps and user interfaces matching the Atlassian style.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",