@zapier/zapier-sdk-mcp 0.8.5 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +23 -23
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @zapier/zapier-sdk-mcp
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4ad0f34]
8
+ - @zapier/zapier-sdk@0.27.1
9
+
10
+ ## 0.9.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 9fb0b48: Switch from "authentication" to "connection" everywhere.
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [9fb0b48]
19
+ - @zapier/zapier-sdk@0.27.0
20
+
3
21
  ## 0.8.5
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -74,7 +74,7 @@ All Zapier SDK functions are automatically exposed as MCP tools:
74
74
  - `list-actions` - List actions for a specific app
75
75
  - `get-action` - Get details about a specific action
76
76
  - `run-action` - Execute a Zapier action
77
- - `list-authentications` - List your authentications
77
+ - `list-connections` - List your connections
78
78
  - And many more...
79
79
 
80
80
  ## Error Handling
@@ -131,15 +131,15 @@ pnpm test
131
131
  - [Apps](#apps)
132
132
  - [`get-app`](#get-app)
133
133
  - [`list-apps`](#list-apps)
134
- - [Authentications](#authentications)
135
- - [`find-first-authentication`](#find-first-authentication)
136
- - [`find-unique-authentication`](#find-unique-authentication)
137
- - [`get-authentication`](#get-authentication)
138
- - [`list-authentications`](#list-authentications)
139
134
  - [Client Credentials](#client-credentials)
140
135
  - [`create-client-credentials`](#create-client-credentials)
141
136
  - [`delete-client-credentials`](#delete-client-credentials)
142
137
  - [`list-client-credentials`](#list-client-credentials)
138
+ - [Connections](#connections)
139
+ - [`find-first-connection`](#find-first-connection)
140
+ - [`find-unique-connection`](#find-unique-connection)
141
+ - [`get-connection`](#get-connection)
142
+ - [`list-connections`](#list-connections)
143
143
  - [HTTP Requests](#http-requests)
144
144
  - [`fetch`](#fetch)
145
145
 
@@ -189,40 +189,40 @@ Get detailed information about a specific app
189
189
 
190
190
  List all available apps with optional filtering
191
191
 
192
- ### Authentications
192
+ ### Client Credentials
193
193
 
194
- #### `find-first-authentication`
194
+ #### `create-client-credentials`
195
195
 
196
- Find the first authentication matching the criteria
196
+ Create new client credentials for the authenticated user
197
197
 
198
- #### `find-unique-authentication`
198
+ #### `delete-client-credentials`
199
199
 
200
- Find a unique authentication matching the criteria
200
+ Delete client credentials by client ID
201
201
 
202
- #### `get-authentication`
202
+ #### `list-client-credentials`
203
203
 
204
- Get a specific authentication by ID
204
+ List client credentials for the authenticated user
205
205
 
206
- #### `list-authentications`
206
+ ### Connections
207
207
 
208
- List available authentications with optional filtering
208
+ #### `find-first-connection`
209
209
 
210
- ### Client Credentials
210
+ Find the first connection matching the criteria
211
211
 
212
- #### `create-client-credentials`
212
+ #### `find-unique-connection`
213
213
 
214
- Create new client credentials for the authenticated user
214
+ Find a unique connection matching the criteria
215
215
 
216
- #### `delete-client-credentials`
216
+ #### `get-connection`
217
217
 
218
- Delete client credentials by client ID
218
+ Execute getConnection
219
219
 
220
- #### `list-client-credentials`
220
+ #### `list-connections`
221
221
 
222
- List client credentials for the authenticated user
222
+ List available connections with optional filtering
223
223
 
224
224
  ### HTTP Requests
225
225
 
226
226
  #### `fetch`
227
227
 
228
- Make authenticated HTTP requests to any API through Zapier's Relay service. Pass an authenticationId to automatically inject the user's stored credentials (OAuth tokens, API keys, etc.) into the outgoing request. Mirrors the native fetch(url, init?) signature with additional Zapier-specific options.
228
+ Make authenticated HTTP requests to any API through Zapier's Relay service. Pass a connectionId to automatically inject the user's stored credentials (OAuth tokens, API keys, etc.) into the outgoing request. Mirrors the native fetch(url, init?) signature with additional Zapier-specific options.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zapier/zapier-sdk-mcp",
3
- "version": "0.8.5",
3
+ "version": "0.9.1",
4
4
  "description": "MCP server for Zapier SDK",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.mts",
@@ -18,7 +18,7 @@
18
18
  "dependencies": {
19
19
  "@modelcontextprotocol/sdk": "^1.17.3",
20
20
  "zod": "4.2.1",
21
- "@zapier/zapier-sdk": "0.26.0"
21
+ "@zapier/zapier-sdk": "0.27.1"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/node": "^20.0.0",