skilldb 0.4.0 → 0.4.1

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 (2) hide show
  1. package/README.md +34 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,41 @@
1
1
  # skilldb
2
2
 
3
- CLI and TypeScript SDK for [SkillDB](https://skilldb.dev) — discover, install, and manage AI agent skills from the terminal.
3
+ CLI, TypeScript SDK, and **MCP Server** for [SkillDB](https://skilldb.dev) — discover, install, and manage AI agent skills.
4
4
 
5
- 5,000+ expert skills for Claude Code, Cursor, OpenClaw, and Codex. Search, install, and activate exactly what your agent needs.
5
+ 5,000+ expert skills across 327 packs for Claude Code, Cursor, Windsurf, and any MCP-compatible AI tool.
6
6
 
7
- ## Quick Start
7
+ ## MCP Server (NEW in v0.4.0)
8
+
9
+ Connect SkillDB directly to your AI coding tool via the Model Context Protocol:
10
+
11
+ ```bash
12
+ # Claude Code
13
+ claude mcp add skilldb -- npx skilldb-mcp
14
+
15
+ # With API key (for full skill content)
16
+ claude mcp add skilldb -- npx skilldb-mcp --api-key sk_live_xxx
17
+ ```
18
+
19
+ **Cursor** — add to `.cursor/mcp.json`:
20
+ ```json
21
+ {
22
+ "mcpServers": {
23
+ "skilldb": {
24
+ "command": "npx",
25
+ "args": ["skilldb-mcp"]
26
+ }
27
+ }
28
+ }
29
+ ```
30
+
31
+ Once connected, your AI assistant can search and load skills natively. Just ask:
32
+ - *"Search SkillDB for React performance patterns"*
33
+ - *"Load the code review skill"*
34
+ - *"What skills should I use for this project?"*
35
+
36
+ **5 tools exposed:** `skilldb_search`, `skilldb_get`, `skilldb_list`, `skilldb_suggest`, `skilldb_recommend`
37
+
38
+ ## Quick Start (CLI)
8
39
 
9
40
  ```bash
10
41
  # Search for skills (with inline preview)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skilldb",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "SDK and CLI for SkillDB — discover, install, and manage AI agent skills",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",