@tekmidian/scribe 0.1.0 → 0.1.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.
- package/README.md +10 -2
- package/package.json +16 -3
package/README.md
CHANGED
|
@@ -31,10 +31,18 @@ The server runs as a local process. Claude connects over stdio via the MCP proto
|
|
|
31
31
|
- [Claude Desktop](https://claude.ai/download) or [Claude Code](https://claude.ai/code)
|
|
32
32
|
- [Node.js](https://nodejs.org) 18+ **or** [Bun](https://bun.sh) 1.0+
|
|
33
33
|
|
|
34
|
-
### Install
|
|
34
|
+
### Install with Claude Code
|
|
35
|
+
|
|
36
|
+
Tell Claude:
|
|
37
|
+
|
|
38
|
+
> *"Install the scribe MCP server from github.com/mnott/Scribe"*
|
|
39
|
+
|
|
40
|
+
Claude will clone the repo, build it, and add it to your MCP config.
|
|
41
|
+
|
|
42
|
+
Or use the CLI directly:
|
|
35
43
|
|
|
36
44
|
```bash
|
|
37
|
-
claude mcp add scribe-mcp -- npx -y scribe
|
|
45
|
+
claude mcp add scribe-mcp -- npx -y @tekmidian/scribe
|
|
38
46
|
```
|
|
39
47
|
|
|
40
48
|
### Manual install (Claude Desktop)
|
package/package.json
CHANGED
|
@@ -1,14 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekmidian/scribe",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP server for media transcription — YouTube, podcasts, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"scribe-mcp": "./dist/index.js"
|
|
8
8
|
},
|
|
9
|
-
"files": [
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
10
12
|
"main": "dist/index.js",
|
|
11
|
-
"keywords": [
|
|
13
|
+
"keywords": [
|
|
14
|
+
"mcp",
|
|
15
|
+
"scribe",
|
|
16
|
+
"youtube",
|
|
17
|
+
"transcription",
|
|
18
|
+
"captions",
|
|
19
|
+
"subtitles",
|
|
20
|
+
"claude",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"mcp-server",
|
|
23
|
+
"media"
|
|
24
|
+
],
|
|
12
25
|
"author": "Matthias Nott <mnott@mnsoft.org>",
|
|
13
26
|
"repository": {
|
|
14
27
|
"type": "git",
|