@smartytalent/mcp-tools 0.7.7 → 0.7.9
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/tools.json +134 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -2461,6 +2461,140 @@
|
|
|
2461
2461
|
"operationId": "userUploadsOptions"
|
|
2462
2462
|
}
|
|
2463
2463
|
},
|
|
2464
|
+
{
|
|
2465
|
+
"name": "start_user_identity_link",
|
|
2466
|
+
"description": "Start Linking A Social Account",
|
|
2467
|
+
"inputSchema": {
|
|
2468
|
+
"type": "object",
|
|
2469
|
+
"properties": {
|
|
2470
|
+
"data": {
|
|
2471
|
+
"type": "object",
|
|
2472
|
+
"properties": {
|
|
2473
|
+
"type": {
|
|
2474
|
+
"type": "string",
|
|
2475
|
+
"enum": [
|
|
2476
|
+
"identity-links"
|
|
2477
|
+
]
|
|
2478
|
+
},
|
|
2479
|
+
"attributes": {
|
|
2480
|
+
"type": "object",
|
|
2481
|
+
"required": [
|
|
2482
|
+
"provider"
|
|
2483
|
+
],
|
|
2484
|
+
"properties": {
|
|
2485
|
+
"provider": {
|
|
2486
|
+
"type": "string",
|
|
2487
|
+
"enum": [
|
|
2488
|
+
"Google",
|
|
2489
|
+
"LinkedIn"
|
|
2490
|
+
]
|
|
2491
|
+
}
|
|
2492
|
+
}
|
|
2493
|
+
}
|
|
2494
|
+
}
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
},
|
|
2498
|
+
"_meta": {
|
|
2499
|
+
"method": "POST",
|
|
2500
|
+
"path": "/v1/users/{userId}/identities",
|
|
2501
|
+
"operationId": "startUserIdentityLink"
|
|
2502
|
+
}
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
"name": "user_identities_options",
|
|
2506
|
+
"description": "User Identities Options",
|
|
2507
|
+
"inputSchema": {
|
|
2508
|
+
"type": "object",
|
|
2509
|
+
"properties": {}
|
|
2510
|
+
},
|
|
2511
|
+
"_meta": {
|
|
2512
|
+
"method": "OPTIONS",
|
|
2513
|
+
"path": "/v1/users/{userId}/identities",
|
|
2514
|
+
"operationId": "userIdentitiesOptions"
|
|
2515
|
+
}
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
"name": "complete_user_identity_link",
|
|
2519
|
+
"description": "Complete Linking A Social Account",
|
|
2520
|
+
"inputSchema": {
|
|
2521
|
+
"type": "object",
|
|
2522
|
+
"properties": {
|
|
2523
|
+
"data": {
|
|
2524
|
+
"type": "object",
|
|
2525
|
+
"properties": {
|
|
2526
|
+
"type": {
|
|
2527
|
+
"type": "string",
|
|
2528
|
+
"enum": [
|
|
2529
|
+
"identity-links"
|
|
2530
|
+
]
|
|
2531
|
+
},
|
|
2532
|
+
"attributes": {
|
|
2533
|
+
"type": "object",
|
|
2534
|
+
"required": [
|
|
2535
|
+
"code",
|
|
2536
|
+
"state"
|
|
2537
|
+
],
|
|
2538
|
+
"properties": {
|
|
2539
|
+
"code": {
|
|
2540
|
+
"type": "string",
|
|
2541
|
+
"description": "The authorization code the provider put in the redirect."
|
|
2542
|
+
},
|
|
2543
|
+
"state": {
|
|
2544
|
+
"type": "string",
|
|
2545
|
+
"description": "Echoed back untouched from the redirect. It is the nonce."
|
|
2546
|
+
}
|
|
2547
|
+
}
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
},
|
|
2553
|
+
"_meta": {
|
|
2554
|
+
"method": "POST",
|
|
2555
|
+
"path": "/v1/users/{userId}/identities/complete",
|
|
2556
|
+
"operationId": "completeUserIdentityLink"
|
|
2557
|
+
}
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
"name": "user_identity_complete_options",
|
|
2561
|
+
"description": "User Identity Complete Options",
|
|
2562
|
+
"inputSchema": {
|
|
2563
|
+
"type": "object",
|
|
2564
|
+
"properties": {}
|
|
2565
|
+
},
|
|
2566
|
+
"_meta": {
|
|
2567
|
+
"method": "OPTIONS",
|
|
2568
|
+
"path": "/v1/users/{userId}/identities/complete",
|
|
2569
|
+
"operationId": "userIdentityCompleteOptions"
|
|
2570
|
+
}
|
|
2571
|
+
},
|
|
2572
|
+
{
|
|
2573
|
+
"name": "delete_user_identity",
|
|
2574
|
+
"description": "Unlink A Social Account",
|
|
2575
|
+
"inputSchema": {
|
|
2576
|
+
"type": "object",
|
|
2577
|
+
"properties": {}
|
|
2578
|
+
},
|
|
2579
|
+
"_meta": {
|
|
2580
|
+
"method": "DELETE",
|
|
2581
|
+
"path": "/v1/users/{userId}/identities/{provider}",
|
|
2582
|
+
"operationId": "deleteUserIdentity"
|
|
2583
|
+
}
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"name": "user_identity_options",
|
|
2587
|
+
"description": "User Identity Options",
|
|
2588
|
+
"inputSchema": {
|
|
2589
|
+
"type": "object",
|
|
2590
|
+
"properties": {}
|
|
2591
|
+
},
|
|
2592
|
+
"_meta": {
|
|
2593
|
+
"method": "OPTIONS",
|
|
2594
|
+
"path": "/v1/users/{userId}/identities/{provider}",
|
|
2595
|
+
"operationId": "userIdentityOptions"
|
|
2596
|
+
}
|
|
2597
|
+
},
|
|
2464
2598
|
{
|
|
2465
2599
|
"name": "create_user_invitation",
|
|
2466
2600
|
"description": "Resend User Invitation",
|