Glowe Pinterest MCP
Allows searching public Pinterest pins, inspecting Pin metadata and media (images, GIFs, videos), resolving Pinterest and pin.it links, and downloading media to a local directory with validation and atomic writes.
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., "@Glowe Pinterest MCPsearch Pinterest for 'small kitchen storage ideas' and list the top 10 pins"
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.
Glowe Pinterest MCP
A public Pinterest downloader, usable two ways: a CLI for humans and a stdio MCP server for AI agents. The core is unique: the CLI and the MCP therefore get the same results, apply the same URL validations, and download only into a configured local folder.
Only use content for which you hold the necessary rights. This project reads public data served by Pinterest: it is neither an official Pinterest API, nor a way to bypass a login, a paywall, or a content restriction.
What the project does
Resolves Pinterest Pin links and
pin.itshort links.Searches public Pins by keywords.
Extracts the title, description, Pin URL, and the publicly exposed image/GIF/video media.
Tries the
originalsimage, then the1200x,736x, etc. variants when Pinterest does not serve the best version.Downloads atomically:
.partfile, final rename, without overwriting an existing file.Rejects redirects and media URLs outside of
pinterest.*,pin.it, and the allowed*.pinimg.comCDNs.
The search uses Pinterest’s structured public resource, with a transparent HTML fallback if it becomes unavailable. Pinterest may only return a first batch of results without a login: this is not guaranteed pagination and should not be used to scrape complete boards.
Related MCP server: pinterest-mcp
Local installation
Node 20 or newer is required.
cd tools/pinterest-mcp
npm installExplicitly choose the output folder:
export PINTEREST_MCP_DOWNLOAD_DIR="$PWD/downloads"Media is limited to 35 MiB by default. Adjust only if necessary:
export PINTEREST_MCP_MAX_MEDIA_BYTES=52428800CLI — for humans
All commands accept --json for script-friendly output.
# Rechercher des références, sans écrire de fichier
npm run cli -- search "coiffure bob femme" --limit 8
# Charger la page suivante avec le nextCursor renvoyé par la recherche précédente
npm run cli -- search "coiffure bob femme" --limit 8 --cursor "CURSEUR_RENVOYÉ"
# Inspecter exactement ce qu’un Pin expose avant de télécharger
npm run cli -- inspect "https://pin.it/EXEMPLE" --json
# Télécharger un ou plusieurs Pins dans un dossier local contrôlé
npm run cli -- download "https://www.pinterest.com/pin/99360735500167749/" --output ./downloads
# Éviter les vidéos lorsque seules les images intéressent le workflow
npm run cli -- download "https://www.pinterest.com/pin/99360735500167749/" --no-video
# Recherche suivie d’un téléchargement : à employer seulement après validation du volume
npm run cli -- search-download "hairstyle editorial" --limit 5 --output ./downloadsThe download and search-download commands never take an output path from a URL or remote response. File names are normalized and collisions produce a suffix rather than an overwrite.
MCP — for AI agents
Run the server directly:
PINTEREST_MCP_DOWNLOAD_DIR="$PWD/downloads" npm run mcpIt uses stdio: no port, no Pinterest key, and no application logs on stdout. Errors and startup diagnostics remain on stderr, so as not to corrupt the MCP protocol.
Example Codex local configuration (~/.codex/config.toml):
[mcp_servers.glowe_pinterest]
command = "node"
args = ["/CHEMIN_ABSOLU/glowe/tools/pinterest-mcp/bin/mcp-server.mjs"]
[mcp_servers.glowe_pinterest.env]
PINTEREST_MCP_DOWNLOAD_DIR = "/CHEMIN_ABSOLU/pinterest-downloads"
PINTEREST_MCP_MAX_MEDIA_BYTES = "36700160"After modifying the configuration, restart the MCP/Codex client so it relaunches the process. For any other MCP client, use the same node command, the same absolute argument, and the same environment variables.
MCP tool contract
Tool | Writes to disk | Recommended agent usage |
| No | Search and present references before any action; reuse |
| No | Verify a |
| Yes | Ask for confirmation, then download 1 to 20 provided Pins. |
| Yes | Use only after explicit confirmation of the number of results. |
| No | Verify the local folder and the limits in effect. |
The read tools carry the MCP readOnlyHint annotation. The tools that write to disk explain in their description that user confirmation is required. An agent should always prefer this sequence: pinterest_search → show the selection → pinterest_get_pin → confirmation → pinterest_download.
Example MCP response
pinterest_get_pin returns structured JSON that notably includes:
{
"id": "99360735500167749",
"pinUrl": "https://www.pinterest.com/pin/99360735500167749/",
"title": "…",
"media": [
{
"type": "image",
"url": "https://i.pinimg.com/originals/...jpg",
"alternatives": ["https://i.pinimg.com/1200x/...jpg"]
}
]
}The agent must not invent the availability of a media: it relies on media, then reports each successful or failed download separately.
Tests and quality assurance
# Tests déterministes : URLs, parsing SSR, repli qualité, écriture atomique, handshake MCP
npm test
# Vérification réseau explicite : recherche réelle, extraction d’un Pin, téléchargement CDN réel
npm run test:liveThe network test is intentionally separated: Pinterest may modify its public HTML or make a Pin unavailable. It must never be masked by the unit tests.
Inspirations and technical choices
The design is inspired by the MIT projects pinterest-downloader (originals priority and quality cascade) and PinterestDownloader (structured Pin/search contracts). The MCP interface is inspired by mcp-pinterest, but the implementation here is standalone, without a headless browser, with a purposely more restrictive download surface.
For Pins and boards belonging to the connected Pinterest account, prefer the official Pinterest API and OAuth. Pinterest terms and copyright still apply to any downloaded content.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with the Pinterest API, allowing management of boards and pins through natural language commands.9718MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to manage Pinterest boards and pins, create and update pins, and track analytics via the Pinterest API v5.2MIT
- FlicenseAqualityCmaintenanceExtracts images, gifs, videos, and search results from Pinterest without authentication. Supports search, pin details, board pins, related pins, autocomplete, and media downloads.6
- AlicenseBqualityBmaintenanceEnables image search and information retrieval from Pinterest using the Model Context Protocol. Supports searching by keywords, getting similar pins, and downloading images directly.597MIT
Related MCP Connectors
Give your agent live data from Twitter, Reddit, the web and GitHub. No API keys, no scraping stack.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
A collaborative repository where AI agents and humans share research, images, videos and papers.
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/abdouldotdev/pinterest-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server