@striderlabs/mcp-pinterest
MCP server connector for Pinterest — search pins, manage boards, save pins, and follow users via Playwright browser automation.
Installation
npm install @striderlabs/mcp-pinterest
Configuration
Set environment variables:
export PINTEREST_EMAIL="your-email@example.com"
export PINTEREST_PASSWORD="your-password"
export PINTEREST_HEADLESS="true" # Set to "false" to see browser
Tools
| Tool | Description | |------|-------------| | search_pins | Search for pins by query | | get_pin_details | Get detailed info about a pin | | get_board | Get pins from a board | | get_user_boards | Get user's boards | | save_pin | Save a pin to a board | | create_board | Create a new board | | follow_user | Follow a Pinterest user | | get_home_feed | Get personalized home feed | | get_trending | Get trending pins | | get_my_boards | Get your boards |
MCP Configuration
Add to your MCP config:
{
"mcpServers": {
"pinterest": {
"command": "npx",
"args": ["@striderlabs/mcp-pinterest"],
"env": {
"PINTEREST_EMAIL": "your-email",
"PINTEREST_PASSWORD": "your-password"
}
}
}
}
License
MIT











