@snokam/mcp-api 2.3.0 → 2.3.1

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": "2.3.0",
3
+ "version": "2.3.1",
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": {
@@ -556,6 +556,201 @@
556
556
  "cvText": {
557
557
  "type": "string",
558
558
  "nullable": true
559
+ },
560
+ "projectExperiences": {
561
+ "type": "array",
562
+ "items": {
563
+ "$ref": "#/components/schemas/consultantProjectExperience"
564
+ },
565
+ "nullable": true
566
+ },
567
+ "workExperiences": {
568
+ "type": "array",
569
+ "items": {
570
+ "$ref": "#/components/schemas/consultantWorkExperience"
571
+ },
572
+ "nullable": true
573
+ },
574
+ "educations": {
575
+ "type": "array",
576
+ "items": {
577
+ "$ref": "#/components/schemas/consultantEducation"
578
+ },
579
+ "nullable": true
580
+ },
581
+ "cvRoles": {
582
+ "type": "array",
583
+ "items": {
584
+ "$ref": "#/components/schemas/consultantCvRole"
585
+ },
586
+ "nullable": true
587
+ },
588
+ "keyQualifications": {
589
+ "type": "array",
590
+ "items": {
591
+ "$ref": "#/components/schemas/consultantKeyQualification"
592
+ },
593
+ "nullable": true
594
+ }
595
+ }
596
+ },
597
+ "consultantCvRole": {
598
+ "type": "object",
599
+ "properties": {
600
+ "name": {
601
+ "type": "string",
602
+ "nullable": true
603
+ },
604
+ "longDescription": {
605
+ "type": "string",
606
+ "nullable": true
607
+ },
608
+ "tags": {
609
+ "type": "array",
610
+ "items": {
611
+ "type": "string"
612
+ },
613
+ "nullable": true
614
+ }
615
+ }
616
+ },
617
+ "consultantEducation": {
618
+ "type": "object",
619
+ "properties": {
620
+ "school": {
621
+ "type": "string",
622
+ "nullable": true
623
+ },
624
+ "degree": {
625
+ "type": "string",
626
+ "nullable": true
627
+ },
628
+ "description": {
629
+ "type": "string",
630
+ "nullable": true
631
+ },
632
+ "yearFrom": {
633
+ "type": "integer",
634
+ "format": "int32",
635
+ "nullable": true
636
+ },
637
+ "yearTo": {
638
+ "type": "integer",
639
+ "format": "int32",
640
+ "nullable": true
641
+ }
642
+ }
643
+ },
644
+ "consultantKeyQualification": {
645
+ "type": "object",
646
+ "properties": {
647
+ "label": {
648
+ "type": "string",
649
+ "nullable": true
650
+ },
651
+ "description": {
652
+ "type": "string",
653
+ "nullable": true
654
+ },
655
+ "tags": {
656
+ "type": "array",
657
+ "items": {
658
+ "type": "string"
659
+ },
660
+ "nullable": true
661
+ }
662
+ }
663
+ },
664
+ "consultantProjectExperience": {
665
+ "type": "object",
666
+ "properties": {
667
+ "customer": {
668
+ "type": "string",
669
+ "nullable": true
670
+ },
671
+ "description": {
672
+ "type": "string",
673
+ "nullable": true
674
+ },
675
+ "longDescription": {
676
+ "type": "string",
677
+ "nullable": true
678
+ },
679
+ "industry": {
680
+ "type": "string",
681
+ "nullable": true
682
+ },
683
+ "yearFrom": {
684
+ "type": "integer",
685
+ "format": "int32",
686
+ "nullable": true
687
+ },
688
+ "monthFrom": {
689
+ "type": "integer",
690
+ "format": "int32",
691
+ "nullable": true
692
+ },
693
+ "yearTo": {
694
+ "type": "integer",
695
+ "format": "int32",
696
+ "nullable": true
697
+ },
698
+ "monthTo": {
699
+ "type": "integer",
700
+ "format": "int32",
701
+ "nullable": true
702
+ },
703
+ "roleTitle": {
704
+ "type": "string",
705
+ "nullable": true
706
+ },
707
+ "roleDescription": {
708
+ "type": "string",
709
+ "nullable": true
710
+ },
711
+ "technologies": {
712
+ "type": "array",
713
+ "items": {
714
+ "type": "string"
715
+ },
716
+ "nullable": true
717
+ }
718
+ }
719
+ },
720
+ "consultantWorkExperience": {
721
+ "type": "object",
722
+ "properties": {
723
+ "employer": {
724
+ "type": "string",
725
+ "nullable": true
726
+ },
727
+ "title": {
728
+ "type": "string",
729
+ "nullable": true
730
+ },
731
+ "description": {
732
+ "type": "string",
733
+ "nullable": true
734
+ },
735
+ "yearFrom": {
736
+ "type": "integer",
737
+ "format": "int32",
738
+ "nullable": true
739
+ },
740
+ "monthFrom": {
741
+ "type": "integer",
742
+ "format": "int32",
743
+ "nullable": true
744
+ },
745
+ "yearTo": {
746
+ "type": "integer",
747
+ "format": "int32",
748
+ "nullable": true
749
+ },
750
+ "monthTo": {
751
+ "type": "integer",
752
+ "format": "int32",
753
+ "nullable": true
559
754
  }
560
755
  }
561
756
  },