@skillsmith/mcp-server 0.3.9 → 0.3.10

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/README.md CHANGED
@@ -42,10 +42,37 @@ Version 0.3.8 includes the live skill registry with 14,000+ skills.
42
42
 
43
43
  Skills are served from `api.skillsmith.app` and cached locally for 24 hours.
44
44
 
45
+ ### API Key Configuration (SMI-1953)
46
+
47
+ For usage tracking and higher rate limits, configure your personal API key:
48
+
49
+ ```json
50
+ {
51
+ "mcpServers": {
52
+ "skillsmith": {
53
+ "command": "npx",
54
+ "args": ["-y", "@skillsmith/mcp-server"],
55
+ "env": {
56
+ "SKILLSMITH_API_KEY": "sk_live_your_key_here"
57
+ }
58
+ }
59
+ }
60
+ }
61
+ ```
62
+
63
+ Get your API key from https://skillsmith.app/account after signing up.
64
+
65
+ | Auth Mode | Rate Limit | Usage Tracking |
66
+ |-----------|------------|----------------|
67
+ | Personal API Key | Tier-based (60-300/min) | ✅ Dashboard |
68
+ | Anonymous (default) | 30/min | ❌ Not tracked |
69
+ | No auth | 10 total | ❌ Trial only |
70
+
45
71
  ### API Configuration
46
72
 
47
73
  | Variable | Default | Description |
48
74
  |----------|---------|-------------|
75
+ | `SKILLSMITH_API_KEY` | - | Personal API key for usage tracking |
49
76
  | `SKILLSMITH_API_URL` | `https://api.skillsmith.app/functions/v1` | API endpoint |
50
77
  | `SKILLSMITH_OFFLINE_MODE` | `false` | Use local database instead |
51
78
  | `SKILLSMITH_TELEMETRY` | `true` | Enable anonymous telemetry |