summd 0.1.13 → 0.1.16
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 +15 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,14 +26,26 @@ summd list --since 7d --tag ai
|
|
|
26
26
|
summd content <id> | pbcopy
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
## AI Agent (MCP)
|
|
29
|
+
## AI Agent (MCP + Skill)
|
|
30
30
|
|
|
31
|
-
Claude
|
|
31
|
+
### Claude Code (recommended)
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# 1. Install skill — tells Claude to proactively search and save
|
|
35
|
+
npx skills add https://sum.md -g
|
|
36
|
+
|
|
37
|
+
# 2. Register MCP server — gives Claude the tools to act
|
|
38
|
+
claude mcp add --transport http --scope user summd https://sum.md/mcp
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Restart Claude Code and authorize once in the browser. Claude will automatically search your knowledge base and save content without being asked.
|
|
42
|
+
|
|
43
|
+
### Other MCP clients (API key)
|
|
32
44
|
|
|
33
45
|
```json
|
|
34
46
|
{
|
|
35
47
|
"mcpServers": {
|
|
36
|
-
"
|
|
48
|
+
"summd": {
|
|
37
49
|
"type": "http",
|
|
38
50
|
"url": "https://sum.md/mcp",
|
|
39
51
|
"headers": { "Authorization": "Bearer sk-summd-xxxx" }
|