lumnix 0.2.1 → 0.2.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.
Files changed (3) hide show
  1. package/glama.json +39 -0
  2. package/package.json +6 -5
  3. package/server.json +24 -0
package/glama.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "mcpServers": {
3
+ "lumnix": {
4
+ "name": "Lumnix",
5
+ "description": "AI-powered e-commerce research tools via MCP. Search Amazon, Alibaba & AliExpress for winning products, vet suppliers, and calculate margins — all in your AI assistant. 19 tools, 3 pricing tiers.",
6
+ "url": "https://lumnix.dev/api/mcp",
7
+ "homepage": "https://lumnix.dev",
8
+ "repository": "https://github.com/moltstudios/lumnix-mcp",
9
+ "categories": ["e-commerce", "product-research", "amazon", "fba", "data-analysis"],
10
+ "tools": [
11
+ {"name": "search_amazon_products", "description": "Search Amazon for products by keyword"},
12
+ {"name": "get_amazon_product_details", "description": "Get detailed product information from Amazon"},
13
+ {"name": "get_amazon_bsr", "description": "Get Best Sellers Rank data"},
14
+ {"name": "get_amazon_reviews", "description": "Get product reviews from Amazon"},
15
+ {"name": "get_amazon_keepa_data", "description": "Get Keepa price history and sales data"},
16
+ {"name": "search_alibaba_products", "description": "Search Alibaba for suppliers and products"},
17
+ {"name": "get_alibaba_product_details", "description": "Get detailed supplier information from Alibaba"},
18
+ {"name": "search_aliexpress_products", "description": "Search AliExpress for products"},
19
+ {"name": "calculate_profit", "description": "Calculate FBA profit margins including fees"},
20
+ {"name": "get_alibaba_supplier_analysis", "description": "Analyze supplier reliability and ratings"},
21
+ {"name": "get_amazon_keyword_rank", "description": "Check keyword ranking positions"},
22
+ {"name": "get_amazon_niche_analysis", "description": "Analyze a niche's competition and opportunity"},
23
+ {"name": "get_amazon_product_restrictions", "description": "Check product category restrictions"},
24
+ {"name": "get_alibaba_rfq", "description": "Create and manage Request for Quotation"},
25
+ {"name": "get_aliexpress_product_details", "description": "Get detailed product information from AliExpress"},
26
+ {"name": "get_aliexpress_store_info", "description": "Get store information from AliExpress"},
27
+ {"name": "get_amazon_fba_calculator", "description": "Calculate FBA fees and profitability"},
28
+ {"name": "get_amazon_competitor_analysis", "description": "Analyze competitor listings and strategies"},
29
+ {"name": "get_amazon_demand_score", "description": "Get demand scoring for products"}
30
+ ],
31
+ "authentication": {
32
+ "type": "apiKey",
33
+ "description": "API key from lumnix.dev",
34
+ "headerName": "Authorization",
35
+ "headerPrefix": "Bearer "
36
+ }
37
+ }
38
+ }
39
+ }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "lumnix",
3
- "version": "0.2.1",
4
- "description": "AI-powered e-commerce research tools via MCP Amazon, Alibaba, AliExpress product research, supplier vetting, and profit calculations in your AI assistant",
3
+ "version": "0.2.2",
4
+ "description": "AI-powered e-commerce research tools via MCP \u2014 Amazon, Alibaba, AliExpress product research, supplier vetting, and profit calculations in your AI assistant",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "postinstall": "echo '\\n Lumnix installed!\\n\\nAdd to your MCP client config:\\n\\n{\\n \"mcpServers\": {\\n \"lumnix\": {\\n \"url\": \"https://lumnix.dev/api/mcp\",\\n \"headers\": { \"Authorization\": \"Bearer YOUR_API_KEY\" }\\n }\\n }\\n}\\n\\nGet your free API key at https://lumnix.dev\\n'"
7
+ "postinstall": "echo '\\n\u2705 Lumnix installed!\\n\\nAdd to your MCP client config:\\n\\n{\\n \"mcpServers\": {\\n \"lumnix\": {\\n \"url\": \"https://lumnix.dev/api/mcp\",\\n \"headers\": { \"Authorization\": \"Bearer YOUR_API_KEY\" }\\n }\\n }\\n}\\n\\nGet your free API key at https://lumnix.dev\\n'"
8
8
  },
9
9
  "keywords": [
10
10
  "mcp",
@@ -35,5 +35,6 @@
35
35
  },
36
36
  "bugs": {
37
37
  "url": "https://github.com/moltstudios/lumnix-mcp/issues"
38
- }
39
- }
38
+ },
39
+ "mcpName": "io.github.moltstudios/lumnix"
40
+ }
package/server.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.moltstudios/lumnix",
4
+ "description": "E-commerce research via MCP. Amazon, Alibaba & AliExpress product search and FBA margins.",
5
+ "title": "Lumnix",
6
+ "websiteUrl": "https://lumnix.dev",
7
+ "repository": {
8
+ "url": "https://github.com/moltstudios/lumnix-mcp",
9
+ "source": "github"
10
+ },
11
+ "version": "0.2.1",
12
+ "packages": [
13
+ {
14
+ "registryType": "npm",
15
+ "registryBaseUrl": "https://registry.npmjs.org",
16
+ "identifier": "lumnix",
17
+ "version": "0.2.1",
18
+ "transport": {
19
+ "type": "streamable-http",
20
+ "url": "https://lumnix.dev/api/mcp"
21
+ }
22
+ }
23
+ ]
24
+ }