@steno-ai/mcp 0.1.0 → 0.1.2
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 +48 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +26029 -0
- package/dist/cli.js.map +1 -0
- package/dist/local-server.d.ts +1 -0
- package/dist/local-server.d.ts.map +1 -1
- package/dist/local-server.js +190 -119
- package/dist/local-server.js.map +1 -1
- package/package.json +5 -2
- package/src/cli.ts +113 -0
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# @steno-ai/mcp
|
|
2
|
+
|
|
3
|
+
MCP server for Claude Desktop, Claude Code, and other MCP clients. Gives Claude persistent memory across conversations.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @steno-ai/mcp
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Claude Desktop Setup
|
|
12
|
+
|
|
13
|
+
Add to your `claude_desktop_config.json`:
|
|
14
|
+
|
|
15
|
+
```json
|
|
16
|
+
{
|
|
17
|
+
"mcpServers": {
|
|
18
|
+
"steno": {
|
|
19
|
+
"command": "npx",
|
|
20
|
+
"args": ["-y", "@steno-ai/mcp"],
|
|
21
|
+
"env": {
|
|
22
|
+
"STENO_API_KEY": "sk_steno_..."
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Tools
|
|
30
|
+
|
|
31
|
+
| Tool | Description |
|
|
32
|
+
|------|-------------|
|
|
33
|
+
| `steno_remember` | Remember information about a user or topic |
|
|
34
|
+
| `steno_recall` | Recall relevant memories by query |
|
|
35
|
+
| `steno_feedback` | Rate whether a recalled memory was useful |
|
|
36
|
+
| `steno_profile` | Get a structured profile of a user |
|
|
37
|
+
| `steno_graph` | Explore entity relationships in the knowledge graph |
|
|
38
|
+
|
|
39
|
+
## Usage
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
export STENO_API_KEY=sk_steno_...
|
|
43
|
+
npx @steno-ai/mcp
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Part of [Steno](https://github.com/SankrityaT/steno-ai)
|
|
47
|
+
|
|
48
|
+
The memory layer for AI agents.
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
|