@snokam/mcp-api 2.21.0 → 2.23.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": "2.21.0",
3
+ "version": "2.23.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": {
@@ -1695,6 +1695,37 @@
1695
1695
  ]
1696
1696
  }
1697
1697
  },
1698
+ "/v1.0/salesforce/opportunity-stages": {
1699
+ "get": {
1700
+ "tags": [
1701
+ "Salesforce"
1702
+ ],
1703
+ "summary": "List the SF org's Opportunity pipeline stages in configured order.",
1704
+ "operationId": "ListSalesforceOpportunityStages",
1705
+ "responses": {
1706
+ "200": {
1707
+ "description": "Payload of Array of SalesforceOpportunityStage",
1708
+ "content": {
1709
+ "application/json": {
1710
+ "schema": {
1711
+ "type": "array",
1712
+ "items": {
1713
+ "$ref": "#/components/schemas/salesforceOpportunityStage"
1714
+ }
1715
+ }
1716
+ }
1717
+ }
1718
+ }
1719
+ },
1720
+ "security": [
1721
+ {
1722
+ "Implicit": [
1723
+ "api://7e877854-e62d-4637-a655-1da7141f7ac9/.default"
1724
+ ]
1725
+ }
1726
+ ]
1727
+ }
1728
+ },
1698
1729
  "/v1.0/salesforce/refresh": {
1699
1730
  "post": {
1700
1731
  "tags": [
@@ -3586,6 +3617,36 @@
3586
3617
  }
3587
3618
  }
3588
3619
  },
3620
+ "salesforceOpportunityStage": {
3621
+ "type": "object",
3622
+ "properties": {
3623
+ "MasterLabel": {
3624
+ "type": "string",
3625
+ "nullable": true
3626
+ },
3627
+ "ApiName": {
3628
+ "type": "string",
3629
+ "nullable": true
3630
+ },
3631
+ "IsActive": {
3632
+ "type": "boolean",
3633
+ "nullable": true
3634
+ },
3635
+ "IsClosed": {
3636
+ "type": "boolean",
3637
+ "nullable": true
3638
+ },
3639
+ "IsWon": {
3640
+ "type": "boolean",
3641
+ "nullable": true
3642
+ },
3643
+ "SortOrder": {
3644
+ "type": "integer",
3645
+ "format": "int32",
3646
+ "nullable": true
3647
+ }
3648
+ }
3649
+ },
3589
3650
  "salesforceReference": {
3590
3651
  "type": "object",
3591
3652
  "properties": {
@@ -1695,6 +1695,37 @@
1695
1695
  ]
1696
1696
  }
1697
1697
  },
1698
+ "/v1.0/salesforce/opportunity-stages": {
1699
+ "get": {
1700
+ "tags": [
1701
+ "Salesforce"
1702
+ ],
1703
+ "summary": "List the SF org's Opportunity pipeline stages in configured order.",
1704
+ "operationId": "ListSalesforceOpportunityStages",
1705
+ "responses": {
1706
+ "200": {
1707
+ "description": "Payload of Array of SalesforceOpportunityStage",
1708
+ "content": {
1709
+ "application/json": {
1710
+ "schema": {
1711
+ "type": "array",
1712
+ "items": {
1713
+ "$ref": "#/components/schemas/salesforceOpportunityStage"
1714
+ }
1715
+ }
1716
+ }
1717
+ }
1718
+ }
1719
+ },
1720
+ "security": [
1721
+ {
1722
+ "Implicit": [
1723
+ "api://d7f15838-af74-4048-88b3-503089de0064/.default"
1724
+ ]
1725
+ }
1726
+ ]
1727
+ }
1728
+ },
1698
1729
  "/v1.0/salesforce/refresh": {
1699
1730
  "post": {
1700
1731
  "tags": [
@@ -3586,6 +3617,36 @@
3586
3617
  }
3587
3618
  }
3588
3619
  },
3620
+ "salesforceOpportunityStage": {
3621
+ "type": "object",
3622
+ "properties": {
3623
+ "MasterLabel": {
3624
+ "type": "string",
3625
+ "nullable": true
3626
+ },
3627
+ "ApiName": {
3628
+ "type": "string",
3629
+ "nullable": true
3630
+ },
3631
+ "IsActive": {
3632
+ "type": "boolean",
3633
+ "nullable": true
3634
+ },
3635
+ "IsClosed": {
3636
+ "type": "boolean",
3637
+ "nullable": true
3638
+ },
3639
+ "IsWon": {
3640
+ "type": "boolean",
3641
+ "nullable": true
3642
+ },
3643
+ "SortOrder": {
3644
+ "type": "integer",
3645
+ "format": "int32",
3646
+ "nullable": true
3647
+ }
3648
+ }
3649
+ },
3589
3650
  "salesforceReference": {
3590
3651
  "type": "object",
3591
3652
  "properties": {