Pinterest MCP Server
Provides tools for searching Pinterest images by keyword, retrieving detailed image information, getting similar pins, and downloading images directly to local storage.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pinterest MCP Serversearch for minimalist interior design"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pinterest MCP Server
A Model Context Protocol (MCP) server for Pinterest image search and information retrieval.
Features
Search for images on Pinterest by keywords
Retrieve detailed information about Pinterest images
Seamless integration with Cursor IDE, Claude Desktop, and Remote MCP clients
Dual transport modes: Stdio (Local IDEs) and HTTP/SSE (Remote Hosting / Render)
API Key Bearer Authentication for cloud deployment
Support for headless browser mode
Configurable search result limits and filename templates
Search and download images directly to local storage
Related MCP server: pinterest-vision-mcp
Prerequisites
Node.js (v18 or higher)
Cursor IDE or Claude Desktop for MCP integration
Installation & Deployment
🚀 Deploying to Render (Remote MCP Server over HTTP/SSE)
You can host this Pinterest MCP server as a secure remote service on Render, Railway, or Fly.io with Bearer API Key authentication.
Connect your repository to Render or use the included
render.yamlblueprint.Set Environment Variables:
PORT:3000(or leave default set by Render)API_KEY:your_super_secret_key_here(Secret key required for client requests)MCP_PINTEREST_DOWNLOAD_DIR:/tmp/downloads
Health check URL:
GET /health(Returns200 OK)SSE connection URL:
GET /sse(RequiresAuthorization: Bearer <API_KEY>header orx-api-keyheader)
Client Request Example with Bearer Key
GET /sse HTTP/1.1
Host: pinterest-mcp.onrender.com
Authorization: Bearer your_super_secret_key_hereUnauthenticated requests receive 401 Unauthorized responses.
Local Installation via NPX (Recommended for Local Use)
npx pinterest-mcp-serverCommand-line options:
# Specify download directory
npx pinterest-mcp-server --downloadDir /path/to/downloads
# Specify filename template
npx pinterest-mcp-server --filenameTemplate "pinterest_{id}"
# Specify both options
npx pinterest-mcp-server --downloadDir ./images --filenameTemplate "pinterest_{id}"Global Installation
npm install -g pinterest-mcp-server
pinterest-mcp-server --downloadDir /path/to/downloadsManual Installation
Clone repository:
git clone https://github.com/terryso/mcp-pinterest.git pinterest-mcp-server cd pinterest-mcp-serverInstall dependencies:
npm installBuild server:
npm run buildStart server:
npm start
Configuring as MCP Server in Cursor
Open Cursor IDE
Go to Settings (⚙️) > Extensions > MCP
Click Add Server
Enter configuration:
Name:
Pinterest MCPType:
CommandCommand:
nodeArgs:
["/path/to/mcp-pinterest/dist/pinterest-mcp-server.js"]
Or edit your Cursor MCP config file (~/.cursor/mcp.json):
{
"pinterest": {
"command": "node",
"args": ["/path/to/mcp-pinterest/dist/pinterest-mcp-server.js"]
}
}Environment Variables Configuration Example
{
"pinterest": {
"command": "npx",
"env": {
"MCP_PINTEREST_DOWNLOAD_DIR": "/Users/user/Desktop/Images",
"MCP_PINTEREST_FILENAME_TEMPLATE": "pin_{imageId}_{timestamp}.{fileExtension}",
"MCP_PINTEREST_PROXY_SERVER": "http://127.0.0.1:7890"
},
"args": ["pinterest-mcp-server"]
}
}Available MCP Tools
pinterest_health_check: System metrics, memory usage, Chromium binary status, and write diagnosticsNo required parameters.
pinterest_search: Search for images on Pinterest by keyword with persistent browser poolkeyword: Search term (required)limit: Number of images to return (default: 10)headless: Whether to use headless browser mode (default: true)
pinterest_get_similar_pins: Deep visual recommendation engine for a target Pin URL or Pin IDpin_url_or_id: Pinterest Pin URL (e.g.https://www.pinterest.com/pin/11822017768403505/) or numeric Pin ID (required)limit: Number of recommended pins to return (default: 10)headless: Whether to use headless browser mode (default: true)
pinterest_get_image_info: Retrieve detailed information for a Pinterest imageimage_url: Image URL (required)
pinterest_search_and_download: Search and download Pinterest images directly to diskkeyword: Search term (required)limit: Number of images (default: 10)headless: Whether to use headless browser mode (default: true)
Environment Variables Reference
Variable | Description | Default |
| HTTP Port for SSE server mode | (Stdio mode if unassigned) |
| Secret API key for HTTP/SSE authentication | (No auth if empty) |
| Root directory for downloads |
|
| Template for downloaded file names |
|
| Optional proxy server ( | None |
| Path to custom Chrome/Chromium binary | System default |
License
This project is licensed under the MIT License - see the LICENSE file for details.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kargatharaakash/mcp-pinterest'
If you have feedback or need assistance with the MCP directory API, please join our Discord server