@snokam/mcp-api 2.61.1 → 3.0.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/dist/auth.d.ts +0 -15
- package/dist/auth.js +17 -61
- package/dist/builtin-tools.d.ts +109 -0
- package/dist/builtin-tools.js +200 -0
- package/dist/execute-call.d.ts +5 -0
- package/dist/execute-call.js +45 -0
- package/dist/index.d.ts +0 -7
- package/dist/index.js +16 -311
- package/dist/openapi-loader.d.ts +1 -14
- package/dist/openapi-loader.js +27 -50
- package/dist/requirements.d.ts +10 -0
- package/dist/requirements.js +92 -0
- package/dist/state.d.ts +14 -0
- package/dist/state.js +66 -0
- package/dist/tool-schema.d.ts +2 -0
- package/dist/tool-schema.js +42 -0
- package/package.json +8 -3
- package/specs/production/accounting.json +2931 -2321
- package/specs/production/blog.json +747 -1497
- package/specs/production/broker.json +54 -25
- package/specs/production/chatgpt.json +570 -207
- package/specs/production/employees.json +2697 -1823
- package/specs/production/events.json +615 -974
- package/specs/production/notifications.json +329 -15
- package/specs/production/office.json +818 -836
- package/specs/production/recruitment.json +1883 -1207
- package/specs/production/sales.json +2909 -1172
- package/specs/production/sanity.json +47384 -16348
- package/specs/production/sync.json +116 -20
- package/specs/production/webshop.json +37 -17
- package/specs/test/accounting.json +2931 -2321
- package/specs/test/blog.json +747 -1497
- package/specs/test/broker.json +54 -25
- package/specs/test/chatgpt.json +570 -207
- package/specs/test/employees.json +2697 -1823
- package/specs/test/events.json +615 -974
- package/specs/test/notifications.json +329 -15
- package/specs/test/office.json +818 -836
- package/specs/test/recruitment.json +1883 -1207
- package/specs/test/sales.json +2909 -1172
- package/specs/test/sanity.json +47384 -16348
- package/specs/test/sync.json +116 -20
- package/specs/test/webshop.json +37 -17
|
@@ -11,13 +11,36 @@
|
|
|
11
11
|
}
|
|
12
12
|
],
|
|
13
13
|
"paths": {
|
|
14
|
+
"/v1.0/pubsub/tv/uri": {
|
|
15
|
+
"get": {
|
|
16
|
+
"tags": [
|
|
17
|
+
"WebPubSub"
|
|
18
|
+
],
|
|
19
|
+
"summary": "Gets a Web PubSub token",
|
|
20
|
+
"description": "Generates a Web PubSub token for joining and leaving the 'tv' group.",
|
|
21
|
+
"operationId": "GetPubsubToken",
|
|
22
|
+
"responses": {
|
|
23
|
+
"200": {
|
|
24
|
+
"description": "Web PubSub token generated",
|
|
25
|
+
"content": {
|
|
26
|
+
"application/json": {
|
|
27
|
+
"schema": {
|
|
28
|
+
"$ref": "#/components/schemas/pubSubToken"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"x-ms-summary": "Success"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
14
37
|
"/v1.0/sanity-webhook-to-azure": {
|
|
15
38
|
"post": {
|
|
16
39
|
"tags": [
|
|
17
40
|
"Sanity"
|
|
18
41
|
],
|
|
19
42
|
"summary": "Handles Sanity webhook events",
|
|
20
|
-
"description": "
|
|
43
|
+
"description": "Forwards Sanity webhook events to Azure Web PubSub and Service Bus.",
|
|
21
44
|
"operationId": "SanityWebhookToAzure",
|
|
22
45
|
"requestBody": {
|
|
23
46
|
"description": "The Sanity webhook payload",
|
|
@@ -35,30 +58,15 @@
|
|
|
35
58
|
"description": "Event processed successfully",
|
|
36
59
|
"x-ms-summary": "Success"
|
|
37
60
|
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
],
|
|
46
|
-
"summary": "Gets a Web PubSub token",
|
|
47
|
-
"description": "Generates a Web PubSub token for joining and leaving the 'tv' group.",
|
|
48
|
-
"operationId": "GetPubsubToken",
|
|
49
|
-
"responses": {
|
|
50
|
-
"200": {
|
|
51
|
-
"description": "Web PubSub token generated",
|
|
52
|
-
"content": {
|
|
53
|
-
"application/json": {
|
|
54
|
-
"schema": {
|
|
55
|
-
"$ref": "#/components/schemas/pubSubToken"
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
},
|
|
59
|
-
"x-ms-summary": "Success"
|
|
61
|
+
},
|
|
62
|
+
"security": [
|
|
63
|
+
{
|
|
64
|
+
"Implicit": []
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"ApiKey": []
|
|
60
68
|
}
|
|
61
|
-
|
|
69
|
+
]
|
|
62
70
|
}
|
|
63
71
|
}
|
|
64
72
|
},
|
|
@@ -68,7 +76,8 @@
|
|
|
68
76
|
"type": "object",
|
|
69
77
|
"properties": {
|
|
70
78
|
"uri": {
|
|
71
|
-
"type": "string"
|
|
79
|
+
"type": "string",
|
|
80
|
+
"nullable": true
|
|
72
81
|
}
|
|
73
82
|
}
|
|
74
83
|
},
|
|
@@ -103,6 +112,26 @@
|
|
|
103
112
|
}
|
|
104
113
|
}
|
|
105
114
|
}
|
|
115
|
+
},
|
|
116
|
+
"securitySchemes": {
|
|
117
|
+
"Implicit": {
|
|
118
|
+
"type": "oauth2",
|
|
119
|
+
"flows": {
|
|
120
|
+
"implicit": {
|
|
121
|
+
"authorizationUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/authorize",
|
|
122
|
+
"tokenUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/token",
|
|
123
|
+
"refreshUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/token",
|
|
124
|
+
"scopes": {
|
|
125
|
+
"api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default": "Default function scope"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"ApiKey": {
|
|
131
|
+
"type": "http",
|
|
132
|
+
"scheme": "bearer",
|
|
133
|
+
"bearerFormat": "JWT"
|
|
134
|
+
}
|
|
106
135
|
}
|
|
107
136
|
}
|
|
108
137
|
}
|