@zapier/zapier-sdk-mcp 0.1.1 → 0.1.3
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/README.md +118 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -113,3 +113,121 @@ pnpm build
|
|
|
113
113
|
```bash
|
|
114
114
|
pnpm test
|
|
115
115
|
```
|
|
116
|
+
|
|
117
|
+
<!-- Generated MCP Tools Reference -->
|
|
118
|
+
|
|
119
|
+
## Table of Contents
|
|
120
|
+
|
|
121
|
+
- [Installation](#installation)
|
|
122
|
+
- [Usage](#usage)
|
|
123
|
+
- [Available Tools](#available-tools)
|
|
124
|
+
- [Actions](#actions)
|
|
125
|
+
- [`listActions`](#listactions)
|
|
126
|
+
- [`getAction`](#getaction)
|
|
127
|
+
- [`listInputFields`](#listinputfields)
|
|
128
|
+
- [`runAction`](#runaction)
|
|
129
|
+
- [Apps](#apps)
|
|
130
|
+
- [`listApps`](#listapps)
|
|
131
|
+
- [`getApp`](#getapp)
|
|
132
|
+
- [Authentication](#authentication)
|
|
133
|
+
- [`listAuthentications`](#listauthentications)
|
|
134
|
+
- [`getAuthentication`](#getauthentication)
|
|
135
|
+
- [`findFirstAuthentication`](#findfirstauthentication)
|
|
136
|
+
- [`findUniqueAuthentication`](#finduniqueauthentication)
|
|
137
|
+
- [HTTP Requests](#http-requests)
|
|
138
|
+
- [`request`](#request)
|
|
139
|
+
- [User & Profile](#user--profile)
|
|
140
|
+
- [`getProfile`](#getprofile)
|
|
141
|
+
|
|
142
|
+
## Installation
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
npm install -D @zapier/zapier-sdk-cli
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
## Usage
|
|
149
|
+
|
|
150
|
+
```bash
|
|
151
|
+
# Start MCP server
|
|
152
|
+
npx zapier-sdk mcp
|
|
153
|
+
|
|
154
|
+
# Start with debug logging
|
|
155
|
+
npx zapier-sdk mcp --debug
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
**Claude Code Configuration:**
|
|
159
|
+
|
|
160
|
+
```json
|
|
161
|
+
{
|
|
162
|
+
"mcpServers": {
|
|
163
|
+
"zapier-sdk": {
|
|
164
|
+
"command": "npx",
|
|
165
|
+
"args": ["zapier-sdk", "mcp"]
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
## Available Tools
|
|
172
|
+
|
|
173
|
+
All SDK functions are automatically exposed as MCP tools using kebab-case naming.
|
|
174
|
+
|
|
175
|
+
### Actions
|
|
176
|
+
|
|
177
|
+
#### `list-actions`
|
|
178
|
+
|
|
179
|
+
List all actions for a specific app
|
|
180
|
+
|
|
181
|
+
#### `get-action`
|
|
182
|
+
|
|
183
|
+
Get detailed information about a specific action
|
|
184
|
+
|
|
185
|
+
#### `list-input-fields`
|
|
186
|
+
|
|
187
|
+
Get the input fields required for a specific action
|
|
188
|
+
|
|
189
|
+
#### `run-action`
|
|
190
|
+
|
|
191
|
+
Execute an action with the given inputs
|
|
192
|
+
|
|
193
|
+
### Apps
|
|
194
|
+
|
|
195
|
+
#### `list-apps`
|
|
196
|
+
|
|
197
|
+
List all available apps with optional filtering
|
|
198
|
+
|
|
199
|
+
#### `get-app`
|
|
200
|
+
|
|
201
|
+
Get detailed information about a specific app
|
|
202
|
+
|
|
203
|
+
### Authentication
|
|
204
|
+
|
|
205
|
+
#### `list-authentications`
|
|
206
|
+
|
|
207
|
+
List available authentications with optional filtering
|
|
208
|
+
|
|
209
|
+
#### `get-authentication`
|
|
210
|
+
|
|
211
|
+
Get a specific authentication by ID
|
|
212
|
+
|
|
213
|
+
#### `find-first-authentication`
|
|
214
|
+
|
|
215
|
+
Find the first authentication matching the criteria
|
|
216
|
+
|
|
217
|
+
#### `find-unique-authentication`
|
|
218
|
+
|
|
219
|
+
Find a unique authentication matching the criteria
|
|
220
|
+
|
|
221
|
+
### HTTP Requests
|
|
222
|
+
|
|
223
|
+
#### `request`
|
|
224
|
+
|
|
225
|
+
Make authenticated HTTP requests through Zapier's Relay service
|
|
226
|
+
|
|
227
|
+
### User & Profile
|
|
228
|
+
|
|
229
|
+
#### `get-profile`
|
|
230
|
+
|
|
231
|
+
Get current user's profile information
|
|
232
|
+
|
|
233
|
+
<!-- End Generated MCP Tools Reference -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zapier/zapier-sdk-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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.
|
|
24
|
+
"@zapier/zapier-sdk": "0.5.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^20.0.0",
|