@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.
Files changed (2) hide show
  1. package/README.md +14 -19
  2. 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
- ### Installation
9
+ **One command to set up:**
10
10
 
11
11
  ```bash
12
- # Clone and build
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
- ### Configure for Claude Code
15
+ That's it! Restart Claude Code and you're ready to go.
20
16
 
21
- Add to your Claude Code settings (`~/.claude/settings.json`):
17
+ ### Verify It Works
22
18
 
23
- ```json
24
- {
25
- "mcpServers": {
26
- "efecto": {
27
- "command": "node",
28
- "args": ["/absolute/path/to/efecto/mcp-server/dist/index.js"]
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
- Then restart Claude Code. You can verify it's working by asking Claude to list efecto tools.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@efectoapp/mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Efecto - create stunning visual designs with ASCII effects, glitch art, and more from your CLI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",