@striderlabs/mcp-pinterest 1.0.0

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 (3) hide show
  1. package/README.md +57 -0
  2. package/dist/index.js +21121 -0
  3. package/package.json +24 -0
package/README.md ADDED
@@ -0,0 +1,57 @@
1
+ # @striderlabs/mcp-pinterest
2
+
3
+ MCP server connector for Pinterest — search pins, manage boards, save pins, and follow users via Playwright browser automation.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @striderlabs/mcp-pinterest
9
+ ```
10
+
11
+ ## Configuration
12
+
13
+ Set environment variables:
14
+
15
+ ```bash
16
+ export PINTEREST_EMAIL="your-email@example.com"
17
+ export PINTEREST_PASSWORD="your-password"
18
+ export PINTEREST_HEADLESS="true" # Set to "false" to see browser
19
+ ```
20
+
21
+ ## Tools
22
+
23
+ | Tool | Description |
24
+ |------|-------------|
25
+ | `search_pins` | Search for pins by query |
26
+ | `get_pin_details` | Get detailed info about a pin |
27
+ | `get_board` | Get pins from a board |
28
+ | `get_user_boards` | Get user's boards |
29
+ | `save_pin` | Save a pin to a board |
30
+ | `create_board` | Create a new board |
31
+ | `follow_user` | Follow a Pinterest user |
32
+ | `get_home_feed` | Get personalized home feed |
33
+ | `get_trending` | Get trending pins |
34
+ | `get_my_boards` | Get your boards |
35
+
36
+ ## MCP Configuration
37
+
38
+ Add to your MCP config:
39
+
40
+ ```json
41
+ {
42
+ "mcpServers": {
43
+ "pinterest": {
44
+ "command": "npx",
45
+ "args": ["@striderlabs/mcp-pinterest"],
46
+ "env": {
47
+ "PINTEREST_EMAIL": "your-email",
48
+ "PINTEREST_PASSWORD": "your-password"
49
+ }
50
+ }
51
+ }
52
+ }
53
+ ```
54
+
55
+ ## License
56
+
57
+ MIT