@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.
- package/CHANGELOG.md +18 -0
- package/README.md +23 -23
- 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-
|
|
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
|
-
###
|
|
192
|
+
### Client Credentials
|
|
193
193
|
|
|
194
|
-
#### `
|
|
194
|
+
#### `create-client-credentials`
|
|
195
195
|
|
|
196
|
-
|
|
196
|
+
Create new client credentials for the authenticated user
|
|
197
197
|
|
|
198
|
-
#### `
|
|
198
|
+
#### `delete-client-credentials`
|
|
199
199
|
|
|
200
|
-
|
|
200
|
+
Delete client credentials by client ID
|
|
201
201
|
|
|
202
|
-
#### `
|
|
202
|
+
#### `list-client-credentials`
|
|
203
203
|
|
|
204
|
-
|
|
204
|
+
List client credentials for the authenticated user
|
|
205
205
|
|
|
206
|
-
|
|
206
|
+
### Connections
|
|
207
207
|
|
|
208
|
-
|
|
208
|
+
#### `find-first-connection`
|
|
209
209
|
|
|
210
|
-
|
|
210
|
+
Find the first connection matching the criteria
|
|
211
211
|
|
|
212
|
-
#### `
|
|
212
|
+
#### `find-unique-connection`
|
|
213
213
|
|
|
214
|
-
|
|
214
|
+
Find a unique connection matching the criteria
|
|
215
215
|
|
|
216
|
-
#### `
|
|
216
|
+
#### `get-connection`
|
|
217
217
|
|
|
218
|
-
|
|
218
|
+
Execute getConnection
|
|
219
219
|
|
|
220
|
-
#### `list-
|
|
220
|
+
#### `list-connections`
|
|
221
221
|
|
|
222
|
-
List
|
|
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
|
|
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.
|
|
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.
|
|
21
|
+
"@zapier/zapier-sdk": "0.27.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^20.0.0",
|