@snokam/mcp-api 1.18.1 → 1.20.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snokam/mcp-api",
3
- "version": "1.18.1",
3
+ "version": "1.20.0",
4
4
  "description": "MCP server exposing Snokam backend APIs as tools for Claude Code and other MCP clients",
5
5
  "type": "module",
6
6
  "bin": {
@@ -260,6 +260,29 @@
260
260
  }
261
261
  ]
262
262
  }
263
+ },
264
+ "/v1.0/protected/sprint-notification/debug": {
265
+ "get": {
266
+ "tags": [
267
+ "Notifications"
268
+ ],
269
+ "summary": "Debug friday summary",
270
+ "description": "Returns the full friday summary including ChatGPT output for debugging",
271
+ "operationId": "DebugSprintSummary",
272
+ "responses": {
273
+ "200": {
274
+ "description": "Payload of Object",
275
+ "content": {
276
+ "application/json": {
277
+ "schema": {
278
+ "type": "object"
279
+ }
280
+ }
281
+ },
282
+ "x-ms-summary": "Debug data"
283
+ }
284
+ }
285
+ }
263
286
  }
264
287
  },
265
288
  "components": {
@@ -214,6 +214,98 @@
214
214
  ]
215
215
  }
216
216
  },
217
+ "/v1.0/tenders/{id}/documents/{docId}/download": {
218
+ "get": {
219
+ "tags": [
220
+ "Documents"
221
+ ],
222
+ "summary": "Download a single document",
223
+ "operationId": "DownloadDocument",
224
+ "parameters": [
225
+ {
226
+ "name": "id",
227
+ "in": "path",
228
+ "required": true,
229
+ "schema": {
230
+ "type": "string"
231
+ }
232
+ },
233
+ {
234
+ "name": "docId",
235
+ "in": "path",
236
+ "required": true,
237
+ "schema": {
238
+ "type": "string"
239
+ }
240
+ }
241
+ ],
242
+ "responses": {
243
+ "200": {
244
+ "description": "Payload of Array of Byte",
245
+ "content": {
246
+ "application/octet-stream": {
247
+ "schema": {
248
+ "type": "string",
249
+ "format": "binary"
250
+ }
251
+ }
252
+ }
253
+ },
254
+ "404": {
255
+ "description": "No description"
256
+ }
257
+ },
258
+ "security": [
259
+ {
260
+ "Implicit": [
261
+ "api://7e877854-e62d-4637-a655-1da7141f7ac9/.default"
262
+ ]
263
+ }
264
+ ]
265
+ }
266
+ },
267
+ "/v1.0/tenders/{id}/documents/download-all": {
268
+ "get": {
269
+ "tags": [
270
+ "Documents"
271
+ ],
272
+ "summary": "Download all tender documents as a ZIP archive",
273
+ "operationId": "DownloadAllDocuments",
274
+ "parameters": [
275
+ {
276
+ "name": "id",
277
+ "in": "path",
278
+ "required": true,
279
+ "schema": {
280
+ "type": "string"
281
+ }
282
+ }
283
+ ],
284
+ "responses": {
285
+ "200": {
286
+ "description": "Payload of Array of Byte",
287
+ "content": {
288
+ "application/zip": {
289
+ "schema": {
290
+ "type": "string",
291
+ "format": "binary"
292
+ }
293
+ }
294
+ }
295
+ },
296
+ "404": {
297
+ "description": "No description"
298
+ }
299
+ },
300
+ "security": [
301
+ {
302
+ "Implicit": [
303
+ "api://7e877854-e62d-4637-a655-1da7141f7ac9/.default"
304
+ ]
305
+ }
306
+ ]
307
+ }
308
+ },
217
309
  "/v1.0/tenders/{id}/competence-matrix": {
218
310
  "post": {
219
311
  "tags": [
@@ -1044,6 +1136,10 @@
1044
1136
  "type": "string",
1045
1137
  "nullable": true
1046
1138
  },
1139
+ "sourceUrl": {
1140
+ "type": "string",
1141
+ "nullable": true
1142
+ },
1047
1143
  "sourceFiles": {
1048
1144
  "type": "array",
1049
1145
  "items": {
@@ -260,6 +260,29 @@
260
260
  }
261
261
  ]
262
262
  }
263
+ },
264
+ "/v1.0/protected/sprint-notification/debug": {
265
+ "get": {
266
+ "tags": [
267
+ "Notifications"
268
+ ],
269
+ "summary": "Debug friday summary",
270
+ "description": "Returns the full friday summary including ChatGPT output for debugging",
271
+ "operationId": "DebugSprintSummary",
272
+ "responses": {
273
+ "200": {
274
+ "description": "Payload of Object",
275
+ "content": {
276
+ "application/json": {
277
+ "schema": {
278
+ "type": "object"
279
+ }
280
+ }
281
+ },
282
+ "x-ms-summary": "Debug data"
283
+ }
284
+ }
285
+ }
263
286
  }
264
287
  },
265
288
  "components": {
@@ -214,6 +214,98 @@
214
214
  ]
215
215
  }
216
216
  },
217
+ "/v1.0/tenders/{id}/documents/{docId}/download": {
218
+ "get": {
219
+ "tags": [
220
+ "Documents"
221
+ ],
222
+ "summary": "Download a single document",
223
+ "operationId": "DownloadDocument",
224
+ "parameters": [
225
+ {
226
+ "name": "id",
227
+ "in": "path",
228
+ "required": true,
229
+ "schema": {
230
+ "type": "string"
231
+ }
232
+ },
233
+ {
234
+ "name": "docId",
235
+ "in": "path",
236
+ "required": true,
237
+ "schema": {
238
+ "type": "string"
239
+ }
240
+ }
241
+ ],
242
+ "responses": {
243
+ "200": {
244
+ "description": "Payload of Array of Byte",
245
+ "content": {
246
+ "application/octet-stream": {
247
+ "schema": {
248
+ "type": "string",
249
+ "format": "binary"
250
+ }
251
+ }
252
+ }
253
+ },
254
+ "404": {
255
+ "description": "No description"
256
+ }
257
+ },
258
+ "security": [
259
+ {
260
+ "Implicit": [
261
+ "api://d7f15838-af74-4048-88b3-503089de0064/.default"
262
+ ]
263
+ }
264
+ ]
265
+ }
266
+ },
267
+ "/v1.0/tenders/{id}/documents/download-all": {
268
+ "get": {
269
+ "tags": [
270
+ "Documents"
271
+ ],
272
+ "summary": "Download all tender documents as a ZIP archive",
273
+ "operationId": "DownloadAllDocuments",
274
+ "parameters": [
275
+ {
276
+ "name": "id",
277
+ "in": "path",
278
+ "required": true,
279
+ "schema": {
280
+ "type": "string"
281
+ }
282
+ }
283
+ ],
284
+ "responses": {
285
+ "200": {
286
+ "description": "Payload of Array of Byte",
287
+ "content": {
288
+ "application/zip": {
289
+ "schema": {
290
+ "type": "string",
291
+ "format": "binary"
292
+ }
293
+ }
294
+ }
295
+ },
296
+ "404": {
297
+ "description": "No description"
298
+ }
299
+ },
300
+ "security": [
301
+ {
302
+ "Implicit": [
303
+ "api://d7f15838-af74-4048-88b3-503089de0064/.default"
304
+ ]
305
+ }
306
+ ]
307
+ }
308
+ },
217
309
  "/v1.0/tenders/{id}/competence-matrix": {
218
310
  "post": {
219
311
  "tags": [
@@ -1044,6 +1136,10 @@
1044
1136
  "type": "string",
1045
1137
  "nullable": true
1046
1138
  },
1139
+ "sourceUrl": {
1140
+ "type": "string",
1141
+ "nullable": true
1142
+ },
1047
1143
  "sourceFiles": {
1048
1144
  "type": "array",
1049
1145
  "items": {