@zapier/zapier-sdk-mcp 0.2.3 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +13 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -121,9 +121,12 @@ pnpm test
121
121
  - [Installation](#installation)
122
122
  - [Usage](#usage)
123
123
  - [Available Tools](#available-tools)
124
+ - [Accounts](#accounts)
125
+ - [`getProfile`](#getprofile)
124
126
  - [Actions](#actions)
125
127
  - [`getAction`](#getaction)
126
128
  - [`listActions`](#listactions)
129
+ - [`listInputFieldChoices`](#listinputfieldchoices)
127
130
  - [`listInputFields`](#listinputfields)
128
131
  - [`runAction`](#runaction)
129
132
  - [Apps](#apps)
@@ -136,8 +139,6 @@ pnpm test
136
139
  - [`listAuthentications`](#listauthentications)
137
140
  - [HTTP Requests](#http-requests)
138
141
  - [`request`](#request)
139
- - [Users](#users)
140
- - [`getProfile`](#getprofile)
141
142
  - [Utilities](#utilities)
142
143
  - [`lockVersion`](#lockversion)
143
144
 
@@ -174,6 +175,12 @@ npx zapier-sdk mcp --debug
174
175
 
175
176
  All SDK functions are automatically exposed as MCP tools using kebab-case naming.
176
177
 
178
+ ### Accounts
179
+
180
+ #### `get-profile`
181
+
182
+ Get current user's profile information
183
+
177
184
  ### Actions
178
185
 
179
186
  #### `get-action`
@@ -184,6 +191,10 @@ Get detailed information about a specific action
184
191
 
185
192
  List all actions for a specific app
186
193
 
194
+ #### `list-input-field-choices`
195
+
196
+ Get the available choices for a dynamic dropdown input field
197
+
187
198
  #### `list-input-fields`
188
199
 
189
200
  Get the input fields required for a specific action
@@ -226,12 +237,6 @@ List available authentications with optional filtering
226
237
 
227
238
  Make authenticated HTTP requests through Zapier's Relay service
228
239
 
229
- ### Users
230
-
231
- #### `get-profile`
232
-
233
- Get current user's profile information
234
-
235
240
  ### Utilities
236
241
 
237
242
  #### `lock-version`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zapier/zapier-sdk-mcp",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "MCP server for Zapier SDK",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.mts",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@modelcontextprotocol/sdk": "^1.17.3",
23
23
  "zod": "^3.22.4",
24
- "@zapier/zapier-sdk": "0.6.3"
24
+ "@zapier/zapier-sdk": "0.8.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^20.0.0",