@snokam/mcp-api 0.106.2 → 0.107.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snokam/mcp-api",
3
- "version": "0.106.2",
3
+ "version": "0.107.0",
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": {
@@ -970,6 +970,45 @@
970
970
  }
971
971
  }
972
972
  }
973
+ },
974
+ "/v1.0/public/{slugOrId}/cv": {
975
+ "get": {
976
+ "tags": [
977
+ "Public"
978
+ ],
979
+ "summary": "Gets the full CV for a public employee by slug or id",
980
+ "description": "Resolves the employee by Sanity slug or id and returns the verbatim CvPartner (Flowcase) CV payload, including project experiences, recommendations and presentations.",
981
+ "operationId": "GetPublicEmployeeCv",
982
+ "parameters": [
983
+ {
984
+ "name": "slugOrId",
985
+ "in": "path",
986
+ "description": "The slug or id of the public employee whose CV to retrieve",
987
+ "required": true,
988
+ "schema": {
989
+ "type": "string"
990
+ },
991
+ "x-ms-summary": "The slug or id of the employee"
992
+ }
993
+ ],
994
+ "responses": {
995
+ "200": {
996
+ "description": "Raw CvPartner CV payload retrieved successfully",
997
+ "content": {
998
+ "application/json": {
999
+ "schema": {
1000
+ "type": "object"
1001
+ }
1002
+ }
1003
+ },
1004
+ "x-ms-summary": "Success"
1005
+ },
1006
+ "404": {
1007
+ "description": "Employee or CV not found",
1008
+ "x-ms-summary": "Not Found"
1009
+ }
1010
+ }
1011
+ }
973
1012
  }
974
1013
  },
975
1014
  "components": {