@smartytalent/mcp-tools 0.7.7 → 0.7.8

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.
Files changed (2) hide show
  1. package/dist/tools.json +92 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2461,6 +2461,98 @@
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": "delete_user_identity",
2519
+ "description": "Unlink A Social Account",
2520
+ "inputSchema": {
2521
+ "type": "object",
2522
+ "properties": {}
2523
+ },
2524
+ "_meta": {
2525
+ "method": "DELETE",
2526
+ "path": "/v1/users/{userId}/identities/{provider}",
2527
+ "operationId": "deleteUserIdentity"
2528
+ }
2529
+ },
2530
+ {
2531
+ "name": "user_identity_options",
2532
+ "description": "User Identity Options",
2533
+ "inputSchema": {
2534
+ "type": "object",
2535
+ "properties": {}
2536
+ },
2537
+ "_meta": {
2538
+ "method": "OPTIONS",
2539
+ "path": "/v1/users/{userId}/identities/{provider}",
2540
+ "operationId": "userIdentityOptions"
2541
+ }
2542
+ },
2543
+ {
2544
+ "name": "identity_link_callback",
2545
+ "description": "Social Account Link Callback",
2546
+ "inputSchema": {
2547
+ "type": "object",
2548
+ "properties": {}
2549
+ },
2550
+ "_meta": {
2551
+ "method": "GET",
2552
+ "path": "/v1/auth/identities/callback",
2553
+ "operationId": "identityLinkCallback"
2554
+ }
2555
+ },
2464
2556
  {
2465
2557
  "name": "create_user_invitation",
2466
2558
  "description": "Resend User Invitation",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.7.7",
3
+ "version": "0.7.8",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",