@skillsmith/mcp-server 0.3.8 → 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
|
@@ -36,14 +36,43 @@ Claude will automatically update your `~/.claude/settings.json`. After restartin
|
|
|
36
36
|
|
|
37
37
|
## Live Skill Registry
|
|
38
38
|
|
|
39
|
-
Version 0.3.
|
|
39
|
+
Version 0.3.8 includes the live skill registry with 14,000+ skills.
|
|
40
|
+
|
|
41
|
+
> **Note (v0.3.8):** Fixed critical bug where the MCP server defaulted to offline mode for all users. Search now correctly connects to the production API. See [SMI-1948](https://linear.app/smith-horn-group/issue/SMI-1948).
|
|
40
42
|
|
|
41
43
|
Skills are served from `api.skillsmith.app` and cached locally for 24 hours.
|
|
42
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
|
+
|
|
43
71
|
### API Configuration
|
|
44
72
|
|
|
45
73
|
| Variable | Default | Description |
|
|
46
74
|
|----------|---------|-------------|
|
|
75
|
+
| `SKILLSMITH_API_KEY` | - | Personal API key for usage tracking |
|
|
47
76
|
| `SKILLSMITH_API_URL` | `https://api.skillsmith.app/functions/v1` | API endpoint |
|
|
48
77
|
| `SKILLSMITH_OFFLINE_MODE` | `false` | Use local database instead |
|
|
49
78
|
| `SKILLSMITH_TELEMETRY` | `true` | Enable anonymous telemetry |
|