@efectoapp/mcp-server 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 +14 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,32 +6,27 @@ Create stunning visual designs with ASCII effects, glitch art, halftone patterns
|
|
|
6
6
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
**One command to set up:**
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
|
|
13
|
-
git clone https://github.com/your-repo/efecto.git
|
|
14
|
-
cd efecto/mcp-server
|
|
15
|
-
pnpm install
|
|
16
|
-
pnpm build
|
|
12
|
+
claude mcp add efecto -- npx @efectoapp/mcp-server
|
|
17
13
|
```
|
|
18
14
|
|
|
19
|
-
|
|
15
|
+
That's it! Restart Claude Code and you're ready to go.
|
|
20
16
|
|
|
21
|
-
|
|
17
|
+
### Verify It Works
|
|
22
18
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
```
|
|
19
|
+
Ask Claude:
|
|
20
|
+
> "Use efecto to list available effects"
|
|
21
|
+
|
|
22
|
+
### Alternative: Global Install (Faster)
|
|
23
|
+
|
|
24
|
+
If you'll use it often, install globally for faster startup:
|
|
33
25
|
|
|
34
|
-
|
|
26
|
+
```bash
|
|
27
|
+
npm install -g @efectoapp/mcp-server
|
|
28
|
+
claude mcp add efecto -- efecto-mcp
|
|
29
|
+
```
|
|
35
30
|
|
|
36
31
|
## Example Workflow
|
|
37
32
|
|
package/package.json
CHANGED