peptiko-mcp-server 1.0.0 → 1.0.2

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.
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "peptiko-mcp-server",
3
+ "description": "MCP server for Peptiko — research-grade peptide catalog, reconstitution calculator, shipping info for Moldova/CIS/EU",
4
+ "version": "1.0.0",
5
+ "author": {
6
+ "name": "Peptiko",
7
+ "email": "peptiko@protonmail.com",
8
+ "url": "https://peptiko.xyz"
9
+ },
10
+ "transport": "stdio",
11
+ "tools": [
12
+ {
13
+ "name": "search_peptides",
14
+ "description": "Search the Peptiko peptide catalog by name, category, or keyword. Returns matching products with price, purity, and description."
15
+ },
16
+ {
17
+ "name": "get_product_details",
18
+ "description": "Get full details for a specific peptide including mechanism of action, storage, CAS number, available formats, and pricing."
19
+ },
20
+ {
21
+ "name": "reconstitution_calculator",
22
+ "description": "Calculate peptide reconstitution — draw volume, syringe units, and doses per vial based on vial size, water volume, and desired dose."
23
+ },
24
+ {
25
+ "name": "shipping_info",
26
+ "description": "Get Peptiko shipping rates, delivery times, and available regions. Ships from Moldova to CIS and EU countries."
27
+ },
28
+ {
29
+ "name": "list_categories",
30
+ "description": "List all peptide categories and the number of products in each."
31
+ }
32
+ ],
33
+ "resources": [
34
+ {
35
+ "uri": "peptiko://catalog",
36
+ "name": "Peptiko Catalog",
37
+ "description": "Complete Peptiko peptide catalog — all products with prices and descriptions"
38
+ },
39
+ {
40
+ "uri": "peptiko://compliance",
41
+ "name": "Compliance",
42
+ "description": "Peptiko RUO compliance and legal disclaimers"
43
+ }
44
+ ]
45
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "peptiko-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for Peptiko — research-grade peptide catalog, pricing, reconstitution calculator, and availability in Moldova/CIS/EU",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/smithery.yaml CHANGED
@@ -3,8 +3,11 @@ startCommand:
3
3
  configSchema:
4
4
  type: object
5
5
  properties: {}
6
+ required: []
7
+ additionalProperties: false
6
8
  commandFunction: |-
7
9
  (config) => ({
8
- command: 'node',
9
- args: ['dist/index.js'],
10
+ command: 'npx',
11
+ args: ['-y', 'peptiko-mcp-server@latest'],
12
+ env: {}
10
13
  })