skilldb 0.4.2 → 0.4.3
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 +19 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,11 +9,14 @@ CLI, TypeScript SDK, and **MCP Server** for [SkillDB](https://skilldb.dev) — d
|
|
|
9
9
|
Connect SkillDB directly to your AI coding tool via the Model Context Protocol:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
#
|
|
13
|
-
|
|
12
|
+
# Step 1: Install globally (one time)
|
|
13
|
+
npm install -g skilldb
|
|
14
|
+
|
|
15
|
+
# Step 2: Add to Claude Code
|
|
16
|
+
claude mcp add skilldb -- skilldb-mcp
|
|
14
17
|
|
|
15
18
|
# With API key (for full skill content)
|
|
16
|
-
claude mcp add skilldb --
|
|
19
|
+
claude mcp add skilldb -- skilldb-mcp --api-key sk_live_xxx
|
|
17
20
|
```
|
|
18
21
|
|
|
19
22
|
**Cursor** — add to `.cursor/mcp.json`:
|
|
@@ -21,8 +24,19 @@ claude mcp add skilldb -- npx -p skilldb skilldb-mcp --api-key sk_live_xxx
|
|
|
21
24
|
{
|
|
22
25
|
"mcpServers": {
|
|
23
26
|
"skilldb": {
|
|
24
|
-
"command": "
|
|
25
|
-
|
|
27
|
+
"command": "skilldb-mcp"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
**Windsurf** — add to `mcp_config.json`:
|
|
34
|
+
```json
|
|
35
|
+
{
|
|
36
|
+
"mcpServers": {
|
|
37
|
+
"skilldb": {
|
|
38
|
+
"command": "skilldb-mcp",
|
|
39
|
+
"args": ["--api-key", "sk_live_xxx"]
|
|
26
40
|
}
|
|
27
41
|
}
|
|
28
42
|
}
|