@umbraco-cms/mcp-dev 17.4.0 → 17.4.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.
@@ -3720,9 +3720,9 @@ export interface GetMediaRootOutput {
3720
3720
 
3721
3721
  export interface CreateMediaInput {
3722
3722
  /**
3723
- * Media source type: 'filePath' for local files (most efficient), 'url' for web files, 'base64' for embedded data (small files only)
3723
+ * Media source type: 'url' for web files, 'base64' for embedded data (small files only)
3724
3724
  */
3725
- sourceType: "filePath" | "url" | "base64";
3725
+ sourceType: "url" | "base64";
3726
3726
  /**
3727
3727
  * The name of the media item
3728
3728
  */
@@ -3757,9 +3757,9 @@ export interface CreateMediaOutput {
3757
3757
 
3758
3758
  export interface CreateMediaMultipleInput {
3759
3759
  /**
3760
- * Media source type: 'filePath' for local files (most efficient), 'url' for web files. Base64 not supported for batch uploads due to token usage.
3760
+ * Media source type: 'url' for web files. Base64 not supported for batch uploads due to token usage.
3761
3761
  */
3762
- sourceType: "filePath" | "url";
3762
+ sourceType: "url";
3763
3763
  /**
3764
3764
  * Array of files to upload (maximum 20 files per batch)
3765
3765
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-cms/mcp-dev",
3
- "version": "17.4.0",
3
+ "version": "17.4.1",
4
4
  "type": "module",
5
5
  "description": "A model context protocol (MCP) server for Umbraco CMS",
6
6
  "main": "dist/index.js",
@@ -68,8 +68,8 @@
68
68
  "@modelcontextprotocol/sdk": "^1.28.0",
69
69
  "@types/uuid": "^10.0.0",
70
70
  "@types/yargs": "^17.0.33",
71
- "@umbraco-cms/mcp-hosted": "^17.0.0-beta.24",
72
- "@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.24",
71
+ "@umbraco-cms/mcp-hosted": "^17.0.0-beta.25",
72
+ "@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.25",
73
73
  "axios": "^1.8.4",
74
74
  "dotenv": "^16.5.0",
75
75
  "form-data": "^4.0.4",