@financeable/lenders 0.0.1 → 0.0.4
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/FUNCTIONS.md +8 -7
- package/README.md +40 -35
- package/bin/mcp-server.js +28 -21
- package/bin/mcp-server.js.map +12 -12
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/prompts.d.ts.map +1 -1
- package/dist/commonjs/mcp-server/prompts.js +5 -1
- package/dist/commonjs/mcp-server/prompts.js.map +1 -1
- package/dist/commonjs/mcp-server/resources.d.ts.map +1 -1
- package/dist/commonjs/mcp-server/resources.js +10 -2
- package/dist/commonjs/mcp-server/resources.js.map +1 -1
- package/dist/commonjs/mcp-server/server.d.ts.map +1 -1
- package/dist/commonjs/mcp-server/server.js +2 -3
- package/dist/commonjs/mcp-server/server.js.map +1 -1
- package/dist/commonjs/mcp-server/tools.d.ts.map +1 -1
- package/dist/commonjs/mcp-server/tools.js +4 -3
- package/dist/commonjs/mcp-server/tools.js.map +1 -1
- package/dist/commonjs/models/components/apierrorcodes.d.ts +3 -0
- package/dist/commonjs/models/components/apierrorcodes.d.ts.map +1 -1
- package/dist/commonjs/models/components/apierrorcodes.js +1 -0
- package/dist/commonjs/models/components/apierrorcodes.js.map +1 -1
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/prompts.d.ts.map +1 -1
- package/dist/esm/mcp-server/prompts.js +5 -1
- package/dist/esm/mcp-server/prompts.js.map +1 -1
- package/dist/esm/mcp-server/resources.d.ts.map +1 -1
- package/dist/esm/mcp-server/resources.js +10 -2
- package/dist/esm/mcp-server/resources.js.map +1 -1
- package/dist/esm/mcp-server/server.d.ts.map +1 -1
- package/dist/esm/mcp-server/server.js +2 -3
- package/dist/esm/mcp-server/server.js.map +1 -1
- package/dist/esm/mcp-server/tools.d.ts.map +1 -1
- package/dist/esm/mcp-server/tools.js +4 -3
- package/dist/esm/mcp-server/tools.js.map +1 -1
- package/dist/esm/models/components/apierrorcodes.d.ts +3 -0
- package/dist/esm/models/components/apierrorcodes.d.ts.map +1 -1
- package/dist/esm/models/components/apierrorcodes.js +1 -0
- package/dist/esm/models/components/apierrorcodes.js.map +1 -1
- package/docs/sdks/consumers/README.md +16 -14
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/prompts.ts +8 -1
- package/src/mcp-server/resources.ts +16 -2
- package/src/mcp-server/server.ts +3 -3
- package/src/mcp-server/tools.ts +6 -3
- package/src/models/components/apierrorcodes.ts +1 -0
package/FUNCTIONS.md
CHANGED
|
@@ -34,7 +34,7 @@ async function run() {
|
|
|
34
34
|
user: {
|
|
35
35
|
email: {
|
|
36
36
|
status: "<value>",
|
|
37
|
-
address: "
|
|
37
|
+
address: "3183 Hoppe Drives",
|
|
38
38
|
},
|
|
39
39
|
},
|
|
40
40
|
entities: [
|
|
@@ -43,27 +43,28 @@ async function run() {
|
|
|
43
43
|
assets: [
|
|
44
44
|
{},
|
|
45
45
|
{},
|
|
46
|
+
{},
|
|
46
47
|
],
|
|
47
48
|
customers: [
|
|
48
49
|
{
|
|
49
50
|
id: "<id>",
|
|
50
51
|
customerTitle: "<value>",
|
|
51
|
-
firstName: "
|
|
52
|
-
lastName: "
|
|
52
|
+
firstName: "Mikayla",
|
|
53
|
+
lastName: "White",
|
|
53
54
|
idNumber: "<value>",
|
|
54
55
|
idExpiryDate: "<value>",
|
|
55
56
|
idCardNumber: "<value>",
|
|
56
57
|
},
|
|
57
58
|
],
|
|
58
59
|
loanDetails: {
|
|
59
|
-
deposit:
|
|
60
|
-
payout:
|
|
61
|
-
tradeIn:
|
|
60
|
+
deposit: 3638.13,
|
|
61
|
+
payout: 1234.78,
|
|
62
|
+
tradeIn: 7692.67,
|
|
62
63
|
},
|
|
63
64
|
notes: "<value>",
|
|
64
65
|
lenderCredentials: {
|
|
65
66
|
pepperMerchantId: "<id>",
|
|
66
|
-
pepperBaseUrl: "https://glaring-
|
|
67
|
+
pepperBaseUrl: "https://glaring-meatloaf.org",
|
|
67
68
|
pepperClientId: "<id>",
|
|
68
69
|
pepperClientSecret: "<value>",
|
|
69
70
|
pepperUsername: "<value>",
|
package/README.md
CHANGED
|
@@ -181,34 +181,35 @@ async function run() {
|
|
|
181
181
|
user: {
|
|
182
182
|
email: {
|
|
183
183
|
status: "<value>",
|
|
184
|
-
address: "
|
|
184
|
+
address: "3183 Hoppe Drives",
|
|
185
185
|
},
|
|
186
186
|
},
|
|
187
187
|
entities: [],
|
|
188
188
|
assets: [
|
|
189
189
|
{},
|
|
190
190
|
{},
|
|
191
|
+
{},
|
|
191
192
|
],
|
|
192
193
|
customers: [
|
|
193
194
|
{
|
|
194
195
|
id: "<id>",
|
|
195
196
|
customerTitle: "<value>",
|
|
196
|
-
firstName: "
|
|
197
|
-
lastName: "
|
|
197
|
+
firstName: "Mikayla",
|
|
198
|
+
lastName: "White",
|
|
198
199
|
idNumber: "<value>",
|
|
199
200
|
idExpiryDate: "<value>",
|
|
200
201
|
idCardNumber: "<value>",
|
|
201
202
|
},
|
|
202
203
|
],
|
|
203
204
|
loanDetails: {
|
|
204
|
-
deposit:
|
|
205
|
-
payout:
|
|
206
|
-
tradeIn:
|
|
205
|
+
deposit: 3638.13,
|
|
206
|
+
payout: 1234.78,
|
|
207
|
+
tradeIn: 7692.67,
|
|
207
208
|
},
|
|
208
209
|
notes: "<value>",
|
|
209
210
|
lenderCredentials: {
|
|
210
211
|
pepperMerchantId: "<id>",
|
|
211
|
-
pepperBaseUrl: "https://glaring-
|
|
212
|
+
pepperBaseUrl: "https://glaring-meatloaf.org",
|
|
212
213
|
pepperClientId: "<id>",
|
|
213
214
|
pepperClientSecret: "<value>",
|
|
214
215
|
pepperUsername: "<value>",
|
|
@@ -276,34 +277,35 @@ async function run() {
|
|
|
276
277
|
user: {
|
|
277
278
|
email: {
|
|
278
279
|
status: "<value>",
|
|
279
|
-
address: "
|
|
280
|
+
address: "3183 Hoppe Drives",
|
|
280
281
|
},
|
|
281
282
|
},
|
|
282
283
|
entities: [],
|
|
283
284
|
assets: [
|
|
284
285
|
{},
|
|
285
286
|
{},
|
|
287
|
+
{},
|
|
286
288
|
],
|
|
287
289
|
customers: [
|
|
288
290
|
{
|
|
289
291
|
id: "<id>",
|
|
290
292
|
customerTitle: "<value>",
|
|
291
|
-
firstName: "
|
|
292
|
-
lastName: "
|
|
293
|
+
firstName: "Mikayla",
|
|
294
|
+
lastName: "White",
|
|
293
295
|
idNumber: "<value>",
|
|
294
296
|
idExpiryDate: "<value>",
|
|
295
297
|
idCardNumber: "<value>",
|
|
296
298
|
},
|
|
297
299
|
],
|
|
298
300
|
loanDetails: {
|
|
299
|
-
deposit:
|
|
300
|
-
payout:
|
|
301
|
-
tradeIn:
|
|
301
|
+
deposit: 3638.13,
|
|
302
|
+
payout: 1234.78,
|
|
303
|
+
tradeIn: 7692.67,
|
|
302
304
|
},
|
|
303
305
|
notes: "<value>",
|
|
304
306
|
lenderCredentials: {
|
|
305
307
|
pepperMerchantId: "<id>",
|
|
306
|
-
pepperBaseUrl: "https://glaring-
|
|
308
|
+
pepperBaseUrl: "https://glaring-meatloaf.org",
|
|
307
309
|
pepperClientId: "<id>",
|
|
308
310
|
pepperClientSecret: "<value>",
|
|
309
311
|
pepperUsername: "<value>",
|
|
@@ -353,34 +355,35 @@ async function run() {
|
|
|
353
355
|
user: {
|
|
354
356
|
email: {
|
|
355
357
|
status: "<value>",
|
|
356
|
-
address: "
|
|
358
|
+
address: "3183 Hoppe Drives",
|
|
357
359
|
},
|
|
358
360
|
},
|
|
359
361
|
entities: [],
|
|
360
362
|
assets: [
|
|
361
363
|
{},
|
|
362
364
|
{},
|
|
365
|
+
{},
|
|
363
366
|
],
|
|
364
367
|
customers: [
|
|
365
368
|
{
|
|
366
369
|
id: "<id>",
|
|
367
370
|
customerTitle: "<value>",
|
|
368
|
-
firstName: "
|
|
369
|
-
lastName: "
|
|
371
|
+
firstName: "Mikayla",
|
|
372
|
+
lastName: "White",
|
|
370
373
|
idNumber: "<value>",
|
|
371
374
|
idExpiryDate: "<value>",
|
|
372
375
|
idCardNumber: "<value>",
|
|
373
376
|
},
|
|
374
377
|
],
|
|
375
378
|
loanDetails: {
|
|
376
|
-
deposit:
|
|
377
|
-
payout:
|
|
378
|
-
tradeIn:
|
|
379
|
+
deposit: 3638.13,
|
|
380
|
+
payout: 1234.78,
|
|
381
|
+
tradeIn: 7692.67,
|
|
379
382
|
},
|
|
380
383
|
notes: "<value>",
|
|
381
384
|
lenderCredentials: {
|
|
382
385
|
pepperMerchantId: "<id>",
|
|
383
|
-
pepperBaseUrl: "https://glaring-
|
|
386
|
+
pepperBaseUrl: "https://glaring-meatloaf.org",
|
|
384
387
|
pepperClientId: "<id>",
|
|
385
388
|
pepperClientSecret: "<value>",
|
|
386
389
|
pepperUsername: "<value>",
|
|
@@ -434,34 +437,35 @@ async function run() {
|
|
|
434
437
|
user: {
|
|
435
438
|
email: {
|
|
436
439
|
status: "<value>",
|
|
437
|
-
address: "
|
|
440
|
+
address: "3183 Hoppe Drives",
|
|
438
441
|
},
|
|
439
442
|
},
|
|
440
443
|
entities: [],
|
|
441
444
|
assets: [
|
|
442
445
|
{},
|
|
443
446
|
{},
|
|
447
|
+
{},
|
|
444
448
|
],
|
|
445
449
|
customers: [
|
|
446
450
|
{
|
|
447
451
|
id: "<id>",
|
|
448
452
|
customerTitle: "<value>",
|
|
449
|
-
firstName: "
|
|
450
|
-
lastName: "
|
|
453
|
+
firstName: "Mikayla",
|
|
454
|
+
lastName: "White",
|
|
451
455
|
idNumber: "<value>",
|
|
452
456
|
idExpiryDate: "<value>",
|
|
453
457
|
idCardNumber: "<value>",
|
|
454
458
|
},
|
|
455
459
|
],
|
|
456
460
|
loanDetails: {
|
|
457
|
-
deposit:
|
|
458
|
-
payout:
|
|
459
|
-
tradeIn:
|
|
461
|
+
deposit: 3638.13,
|
|
462
|
+
payout: 1234.78,
|
|
463
|
+
tradeIn: 7692.67,
|
|
460
464
|
},
|
|
461
465
|
notes: "<value>",
|
|
462
466
|
lenderCredentials: {
|
|
463
467
|
pepperMerchantId: "<id>",
|
|
464
|
-
pepperBaseUrl: "https://glaring-
|
|
468
|
+
pepperBaseUrl: "https://glaring-meatloaf.org",
|
|
465
469
|
pepperClientId: "<id>",
|
|
466
470
|
pepperClientSecret: "<value>",
|
|
467
471
|
pepperUsername: "<value>",
|
|
@@ -552,34 +556,35 @@ async function run() {
|
|
|
552
556
|
user: {
|
|
553
557
|
email: {
|
|
554
558
|
status: "<value>",
|
|
555
|
-
address: "
|
|
559
|
+
address: "3183 Hoppe Drives",
|
|
556
560
|
},
|
|
557
561
|
},
|
|
558
562
|
entities: [],
|
|
559
563
|
assets: [
|
|
560
564
|
{},
|
|
561
565
|
{},
|
|
566
|
+
{},
|
|
562
567
|
],
|
|
563
568
|
customers: [
|
|
564
569
|
{
|
|
565
570
|
id: "<id>",
|
|
566
571
|
customerTitle: "<value>",
|
|
567
|
-
firstName: "
|
|
568
|
-
lastName: "
|
|
572
|
+
firstName: "Mikayla",
|
|
573
|
+
lastName: "White",
|
|
569
574
|
idNumber: "<value>",
|
|
570
575
|
idExpiryDate: "<value>",
|
|
571
576
|
idCardNumber: "<value>",
|
|
572
577
|
},
|
|
573
578
|
],
|
|
574
579
|
loanDetails: {
|
|
575
|
-
deposit:
|
|
576
|
-
payout:
|
|
577
|
-
tradeIn:
|
|
580
|
+
deposit: 3638.13,
|
|
581
|
+
payout: 1234.78,
|
|
582
|
+
tradeIn: 7692.67,
|
|
578
583
|
},
|
|
579
584
|
notes: "<value>",
|
|
580
585
|
lenderCredentials: {
|
|
581
586
|
pepperMerchantId: "<id>",
|
|
582
|
-
pepperBaseUrl: "https://glaring-
|
|
587
|
+
pepperBaseUrl: "https://glaring-meatloaf.org",
|
|
583
588
|
pepperClientId: "<id>",
|
|
584
589
|
pepperClientSecret: "<value>",
|
|
585
590
|
pepperUsername: "<value>",
|
package/bin/mcp-server.js
CHANGED
|
@@ -4028,12 +4028,6 @@ var init_console_logger = __esm(() => {
|
|
|
4028
4028
|
];
|
|
4029
4029
|
});
|
|
4030
4030
|
|
|
4031
|
-
// src/mcp-server/scopes.ts
|
|
4032
|
-
var mcpScopes;
|
|
4033
|
-
var init_scopes = __esm(() => {
|
|
4034
|
-
mcpScopes = [];
|
|
4035
|
-
});
|
|
4036
|
-
|
|
4037
4031
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
4038
4032
|
var LATEST_PROTOCOL_VERSION = "2024-11-05", SUPPORTED_PROTOCOL_VERSIONS, JSONRPC_VERSION = "2.0", ProgressTokenSchema, CursorSchema, BaseRequestParamsSchema, RequestSchema, BaseNotificationParamsSchema, NotificationSchema, ResultSchema, RequestIdSchema, JSONRPCRequestSchema, JSONRPCNotificationSchema, JSONRPCResponseSchema, ErrorCode, JSONRPCErrorSchema, JSONRPCMessageSchema, EmptyResultSchema, CancelledNotificationSchema, ImplementationSchema, ClientCapabilitiesSchema, InitializeRequestSchema, ServerCapabilitiesSchema, InitializeResultSchema, InitializedNotificationSchema, PingRequestSchema, ProgressSchema, ProgressNotificationSchema, PaginatedRequestSchema, PaginatedResultSchema, ResourceContentsSchema, TextResourceContentsSchema, BlobResourceContentsSchema, ResourceSchema, ResourceTemplateSchema, ListResourcesRequestSchema, ListResourcesResultSchema, ListResourceTemplatesRequestSchema, ListResourceTemplatesResultSchema, ReadResourceRequestSchema, ReadResourceResultSchema, ResourceListChangedNotificationSchema, SubscribeRequestSchema, UnsubscribeRequestSchema, ResourceUpdatedNotificationSchema, PromptArgumentSchema, PromptSchema, ListPromptsRequestSchema, ListPromptsResultSchema, GetPromptRequestSchema, TextContentSchema, ImageContentSchema, EmbeddedResourceSchema, PromptMessageSchema, GetPromptResultSchema, PromptListChangedNotificationSchema, ToolSchema, ListToolsRequestSchema, ListToolsResultSchema, CallToolResultSchema, CompatibilityCallToolResultSchema, CallToolRequestSchema, ToolListChangedNotificationSchema, LoggingLevelSchema, SetLevelRequestSchema, LoggingMessageNotificationSchema, ModelHintSchema, ModelPreferencesSchema, SamplingMessageSchema, CreateMessageRequestSchema, CreateMessageResultSchema, ResourceReferenceSchema, PromptReferenceSchema, CompleteRequestSchema, CompleteResultSchema, RootSchema, ListRootsRequestSchema, ListRootsResultSchema, RootsListChangedNotificationSchema, ClientRequestSchema, ClientNotificationSchema, ClientResultSchema, ServerRequestSchema, ServerNotificationSchema, ServerResultSchema, McpError;
|
|
4039
4033
|
var init_types = __esm(() => {
|
|
@@ -34220,9 +34214,9 @@ var init_config = __esm(() => {
|
|
|
34220
34214
|
SDK_METADATA = {
|
|
34221
34215
|
language: "typescript",
|
|
34222
34216
|
openapiDocVersion: "0.1.0",
|
|
34223
|
-
sdkVersion: "0.0.
|
|
34224
|
-
genVersion: "2.
|
|
34225
|
-
userAgent: "speakeasy-sdk/typescript 0.0.
|
|
34217
|
+
sdkVersion: "0.0.4",
|
|
34218
|
+
genVersion: "2.570.4",
|
|
34219
|
+
userAgent: "speakeasy-sdk/typescript 0.0.4 2.570.4 0.1.0 @financeable/lenders"
|
|
34226
34220
|
};
|
|
34227
34221
|
});
|
|
34228
34222
|
|
|
@@ -34997,7 +34991,10 @@ var init_core = __esm(() => {
|
|
|
34997
34991
|
function createRegisterPrompt(logger, server, sdk, allowedScopes) {
|
|
34998
34992
|
return (prompt) => {
|
|
34999
34993
|
const scopes = prompt.scopes ?? [];
|
|
35000
|
-
if (
|
|
34994
|
+
if (allowedScopes.size > 0 && scopes.length === 0) {
|
|
34995
|
+
return;
|
|
34996
|
+
}
|
|
34997
|
+
if (allowedScopes.size > 0 && !scopes.every((s) => allowedScopes.has(s))) {
|
|
35001
34998
|
return;
|
|
35002
34999
|
}
|
|
35003
35000
|
if (prompt.args) {
|
|
@@ -35068,7 +35065,10 @@ var init_shared = __esm(() => {
|
|
|
35068
35065
|
function createRegisterResource(logger, server, sdk, allowedScopes) {
|
|
35069
35066
|
return (resource) => {
|
|
35070
35067
|
const scopes = resource.scopes ?? [];
|
|
35071
|
-
if (
|
|
35068
|
+
if (allowedScopes.size > 0 && scopes.length === 0) {
|
|
35069
|
+
return;
|
|
35070
|
+
}
|
|
35071
|
+
if (allowedScopes.size > 0 && !scopes.every((s) => allowedScopes.has(s))) {
|
|
35072
35072
|
return;
|
|
35073
35073
|
}
|
|
35074
35074
|
const metadata = {
|
|
@@ -35082,7 +35082,10 @@ function createRegisterResource(logger, server, sdk, allowedScopes) {
|
|
|
35082
35082
|
function createRegisterResourceTemplate(logger, server, sdk, allowedScopes) {
|
|
35083
35083
|
return (resource) => {
|
|
35084
35084
|
const scopes = resource.scopes ?? [];
|
|
35085
|
-
if (
|
|
35085
|
+
if (allowedScopes.size > 0 && scopes.length === 0) {
|
|
35086
|
+
return;
|
|
35087
|
+
}
|
|
35088
|
+
if (allowedScopes.size > 0 && !scopes.every((s) => allowedScopes.has(s))) {
|
|
35086
35089
|
return;
|
|
35087
35090
|
}
|
|
35088
35091
|
const metadata = {
|
|
@@ -35140,11 +35143,11 @@ function createRegisterTool(logger, server, sdk, allowedScopes, allowedTools) {
|
|
|
35140
35143
|
if (allowedTools && !allowedTools.has(tool.name)) {
|
|
35141
35144
|
return;
|
|
35142
35145
|
}
|
|
35143
|
-
const
|
|
35144
|
-
if (allowedScopes.size > 0 &&
|
|
35146
|
+
const scopes = tool.scopes ?? [];
|
|
35147
|
+
if (allowedScopes.size > 0 && scopes.length === 0) {
|
|
35145
35148
|
return;
|
|
35146
35149
|
}
|
|
35147
|
-
if (!
|
|
35150
|
+
if (allowedScopes.size > 0 && !scopes.every((s) => allowedScopes.has(s))) {
|
|
35148
35151
|
return;
|
|
35149
35152
|
}
|
|
35150
35153
|
if (tool.args) {
|
|
@@ -35501,6 +35504,7 @@ var ApiErrorCodes, ApiErrorCodes$inboundSchema, ApiErrorCodes$outboundSchema, Ap
|
|
|
35501
35504
|
var init_apierrorcodes = __esm(() => {
|
|
35502
35505
|
init_lib();
|
|
35503
35506
|
ApiErrorCodes = {
|
|
35507
|
+
BadRequest: "BAD_REQUEST",
|
|
35504
35508
|
ValidationError: "VALIDATION_ERROR",
|
|
35505
35509
|
InternalServerError: "INTERNAL_SERVER_ERROR",
|
|
35506
35510
|
FileUploadError: "FILE_UPLOAD_ERROR",
|
|
@@ -36874,13 +36878,13 @@ var init_consumersCreatePepper2 = __esm(() => {
|
|
|
36874
36878
|
function createMCPServer(deps) {
|
|
36875
36879
|
const server = new McpServer({
|
|
36876
36880
|
name: "FinanceableLenders",
|
|
36877
|
-
version: "0.0.
|
|
36881
|
+
version: "0.0.4"
|
|
36878
36882
|
});
|
|
36879
36883
|
const client = new FinanceableLendersCore({
|
|
36880
36884
|
serverURL: deps.serverURL,
|
|
36881
36885
|
serverIdx: deps.serverIdx
|
|
36882
36886
|
});
|
|
36883
|
-
const scopes = new Set(deps.scopes
|
|
36887
|
+
const scopes = new Set(deps.scopes);
|
|
36884
36888
|
const allowedTools = deps.allowedTools && new Set(deps.allowedTools);
|
|
36885
36889
|
const tool = createRegisterTool(deps.logger, server, client, scopes, allowedTools);
|
|
36886
36890
|
const resource = createRegisterResource(deps.logger, server, client, scopes);
|
|
@@ -36894,7 +36898,6 @@ var init_server2 = __esm(() => {
|
|
|
36894
36898
|
init_mcp();
|
|
36895
36899
|
init_core();
|
|
36896
36900
|
init_resources();
|
|
36897
|
-
init_scopes();
|
|
36898
36901
|
init_tools();
|
|
36899
36902
|
init_consumersCreatePepper2();
|
|
36900
36903
|
});
|
|
@@ -37979,7 +37982,11 @@ function buildContext(process2) {
|
|
|
37979
37982
|
// src/mcp-server/cli/start/command.ts
|
|
37980
37983
|
init_lib();
|
|
37981
37984
|
init_console_logger();
|
|
37982
|
-
|
|
37985
|
+
|
|
37986
|
+
// src/mcp-server/scopes.ts
|
|
37987
|
+
var mcpScopes = [];
|
|
37988
|
+
|
|
37989
|
+
// src/mcp-server/cli/start/command.ts
|
|
37983
37990
|
var startCommand = tn({
|
|
37984
37991
|
loader: async () => {
|
|
37985
37992
|
const { main: main2 } = await Promise.resolve().then(() => (init_impl(), exports_impl));
|
|
@@ -38076,7 +38083,7 @@ var routes = rn({
|
|
|
38076
38083
|
var app = Ve(routes, {
|
|
38077
38084
|
name: "mcp",
|
|
38078
38085
|
versionInfo: {
|
|
38079
|
-
currentVersion: "0.0.
|
|
38086
|
+
currentVersion: "0.0.4"
|
|
38080
38087
|
}
|
|
38081
38088
|
});
|
|
38082
38089
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -38084,5 +38091,5 @@ export {
|
|
|
38084
38091
|
app
|
|
38085
38092
|
};
|
|
38086
38093
|
|
|
38087
|
-
//# debugId=
|
|
38094
|
+
//# debugId=1E6B7F021208FB1264756E2164756E21
|
|
38088
38095
|
//# sourceMappingURL=mcp-server.js.map
|