mcp-pinterest
Pinterest MCP 服务器
用于 Pinterest 图像搜索和信息检索的模型上下文协议 (MCP) 服务器。
特征
通过关键词在 Pinterest 上搜索图片
检索有关 Pinterest 图片的详细信息
通过 MCP 与 Cursor IDE 无缝集成
支持无头浏览器模式
搜索结果的限制控制
从 Pinterest 搜索和下载图片
Related MCP server: FGCLIP-MCP
先决条件
Node.js (v18 或更高版本)
用于 MCP 集成的Cursor IDE
安装
通过 Smithery 安装
要通过Smithery自动为 Claude Desktop 安装 mcp-pinterest:
npx -y @smithery/cli install mcp-pinterest --client claude手动的
克隆此存储库:
git clone https://github.com/terryso/mcp-pinterest.git pinterest-mcp-server cd pinterest-mcp-server安装依赖项:
npm install
用法
命令模式(推荐)
构建服务器:
npm run build您现在可以将此服务器用作 Cursor 中的 MCP 服务器。
在 Cursor 中配置为 MCP 服务器
打开游标IDE
前往“设置”(⚙️) > 扩展程序 > MCP
点击“添加服务器”
输入以下详细信息:
名称:Pinterest MCP
类型:命令
命令:
node参数:
["/path/to/mcp-pinterest/dist/pinterest-mcp-server.js"]
或者直接编辑Cursor的MCP配置文件(通常位于
~/.cursor/mcp.json),添加以下内容:"pinterest": { "command": "node", "args": ["/path/to/mcp-pinterest/dist/pinterest-mcp-server.js"] }点击“保存”
可用的 MCP 功能
服务器公开以下 MCP 功能:
pinterest_search:按关键字在 Pinterest 上搜索图片参数:
keyword:搜索词(必填)limit:返回的图像数量(默认值:10)headless:是否使用无头浏览器模式(默认值:true)
pinterest_get_image_info:获取有关 Pinterest 图像的详细信息参数:
image_url:Pinterest 图片的 URL(必需)
pinterest_search_and_download:从 Pinterest 搜索并下载图片参数:
keyword:搜索词(必填)limit:返回的图像数量(默认值:10)headless:是否使用无头浏览器模式(默认值:true)
游标中的使用示例
配置完成后,您可以直接在 Cursor 的 AI 聊天中使用 Pinterest MCP 功能:
Search for robot images on PinterestAI 将使用 MCP 服务器搜索 Pinterest 并显示结果。
示例截图

屏幕截图显示搜索了 20 张《三上悠亚》的图片,并且所有图片均已成功下载。
发展
项目结构
pinterest-mcp-server.ts:主服务器文件dist/pinterest-mcp-server.js:为生产环境构建的 JavaScript 文件package.json:项目配置和依赖项
添加新功能
要添加新的 MCP 功能:
修改
pinterest-mcp-server.ts使用 MCP SDK 注册新功能
实现函数逻辑
使用
npm run build重建
故障排除
如果服务器启动失败,请检查端口是否已被使用
确保使用
npm install正确安装了所有依赖项确保使用
tsconfig.json文件正确配置了 TypeScript如果遇到构建错误,请尝试运行
npm install -D typescript @types/node验证 Pinterest 访问的网络连接
执照
该项目根据 MIT 许可证获得许可 - 有关详细信息,请参阅LICENSE文件。
配置选项
环境变量
服务器支持以下环境变量进行配置:
MCP_PINTEREST_DOWNLOAD_DIR:指定下载图片的根目录。如果未设置,则默认为相对于服务器脚本的../downloads目录。MCP_PINTEREST_FILENAME_TEMPLATE:指定下载图片的文件名模板。如果未设置,则默认为pinterest_{imageId}.{fileExtension}。MCP_PINTEREST_PROXY_SERVER:指定用于连接 Pinterest 的代理服务器。格式应为protocol://host:port,例如http://127.0.0.1:7890或socks5://127.0.0.1:1080。
用法
设置下载目录
使用环境变量设置下载目录(推荐方法):
# Linux/macOS
export MCP_PINTEREST_DOWNLOAD_DIR=/path/to/your/download/directory
# Then start the server
node pinterest-mcp-server.js
# Windows (CMD)
set MCP_PINTEREST_DOWNLOAD_DIR=C:\path\to\your\download\directory
# Then start the server
node pinterest-mcp-server.js
# Windows (PowerShell)
$env:MCP_PINTEREST_DOWNLOAD_DIR="C:\path\to\your\download\directory"
# Then start the server
node pinterest-mcp-server.js如果未设置环境变量,服务器将使用默认下载目录(相对于服务器脚本的
../downloads)。
设置文件名模板
您可以使用MCP_PINTEREST_FILENAME_TEMPLATE环境变量自定义下载图像的文件名模式:
# Linux/macOS
export MCP_PINTEREST_FILENAME_TEMPLATE="pin_{imageId}_{timestamp}.{fileExtension}"
# Then start the server
node pinterest-mcp-server.js
# Windows (CMD)
set MCP_PINTEREST_FILENAME_TEMPLATE="pin_{imageId}_{timestamp}.{fileExtension}"
# Then start the server
node pinterest-mcp-server.js
# Windows (PowerShell)
$env:MCP_PINTEREST_FILENAME_TEMPLATE="pin_{imageId}_{timestamp}.{fileExtension}"
# Then start the server
node pinterest-mcp-server.js该模板支持以下变量:
{imageId}:Pinterest 图片的唯一 ID{fileExtension}:文件扩展名(例如 jpg、png){timestamp}:当前 UTC 时间戳,格式为 YYYYMMDDHHMMSS{index}:下载多张图片时的索引号(从1开始)
示例模板:
pinterest_{imageId}.{fileExtension}(默认)pin_{timestamp}_{imageId}.{fileExtension}pinterest_image_{index}_{imageId}.{fileExtension}{timestamp}_pinterest.{fileExtension}
如果模板无效(例如,包含不受支持的变量或括号不匹配),服务器将记录警告并使用默认模板。
设置代理服务器
如果您需要使用代理访问 Pinterest(尤其是在 Pinterest 可能受到限制的地区),您可以设置代理配置:
# Linux/macOS
export MCP_PINTEREST_PROXY_SERVER="http://127.0.0.1:7890"
# Then start the server
node pinterest-mcp-server.js
# Windows (CMD)
set MCP_PINTEREST_PROXY_SERVER=http://127.0.0.1:7890
# Then start the server
node pinterest-mcp-server.js
# Windows (PowerShell)
$env:MCP_PINTEREST_PROXY_SERVER="http://127.0.0.1:7890"
# Then start the server
node pinterest-mcp-server.js支持的代理协议:
HTTP:
http://host:portHTTPS:
https://host:portSOCKS4:
socks4://host:portSOCKS5:
socks5://host:port
代理配置既影响用于搜索的浏览器,也影响图像下载过程。
笔记
服务器启动时会验证下载目录的存在及可写性。如果目录不存在,则会尝试创建;如果无法创建或写入,服务器将退出。
客户端在调用下载相关工具时不应该通过参数指定下载路径或文件名模板,因为所有下载都会使用服务器的环境变量配置或默认值。
服务器会自动清理文件名,用下划线替换非法字符(例如
/、\、:、*、?、"、<、>、|)。
接口说明
该服务器提供以下 MCP 工具:
pinterest_search:按关键字搜索 Pinterest 图片pinterest_get_image_info:获取有关 Pinterest 图像的详细信息pinterest_search_and_download:搜索并下载 Pinterest 图片
详细的接口参数参考请参考MCP工具定义。
Available Tools
3 toolspinterest_get_image_infoC
Get Pinterest image information
| Name | Required | Description | Default |
|---|---|---|---|
| image_url | Yes | Image URL |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, and the description does not disclose any behavioral traits such as read-only nature, authentication requirements, or rate limits. It merely restates the name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no unnecessary words. It is appropriately concise, though it could include more information without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one parameter and no output schema, but the description does not mention what information is returned. Without output schema, the agent has no indication of the response format or content, making it incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides a description for the single parameter 'image_url' as 'Image URL'. The tool description does not add any additional meaning or context beyond the schema. With 100% schema coverage, baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Get' and resource 'Pinterest image information', distinguishing it from sibling tools like search and search_and_download. However, it does not specify what information is retrieved, which could be improved.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. For instance, it could mention that this is used after searching to fetch details for a specific image.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinterest_searchB
Search for images on Pinterest by keyword
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | Yes | Search keyword | |
| limit | No | Number of images to return (default: 10) | |
| headless | No | Whether to use headless browser mode (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility for behavioral disclosure. However, it only states the basic action without revealing key traits such as browser automation (implied by the headless parameter), result format, pagination, or any potential side effects. This minimal transparency is insufficient for agents to understand the tool's operational behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence that efficiently communicates the core purpose without any extraneous words. It is appropriately sized and front-loaded, making it quick for an agent to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema and annotations, the description is insufficiently complete for a search tool. It does not specify return values (e.g., image URLs, metadata), result sorting, error handling, or rate limits. The description omits critical operational context that an agent would need to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All three parameters (keyword, limit, headless) are fully described in the input schema with 100% coverage. The description adds no additional meaning beyond the schema; for example, 'by keyword' merely repeats the required parameter. Per guidelines, with high schema coverage, baseline score is 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Search for images on Pinterest by keyword' clearly states the action (search), resource (images on Pinterest), and method (by keyword). It effectively distinguishes this tool from its siblings: 'pinterest_get_image_info' retrieves details of specific images, while 'pinterest_search_and_download' implies additional download functionality, making this tool's purpose unique.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus its siblings or alternatives. It lacks information about prerequisites, limitations, or appropriate contexts, leaving the agent to infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinterest_search_and_downloadB
Search for images on Pinterest by keyword and download them
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | Yes | Search keyword | |
| limit | No | Number of images to return and download (default: 10) | |
| headless | No | Whether to use headless browser mode (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavior. It only states the action, not side effects (e.g., file saving location, format, or any destructive operations). Minimal behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, efficient sentence with no wasted words. Could be slightly more structured but overall well-sized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool that downloads images, missing details on output format, file saving behavior, and how it differs from sibling tools. Incomplete for an agent to reliably invoke.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the description adds no extra meaning beyond what the schema already provides. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'search and download' and resource 'images on Pinterest by keyword'. It distinguishes from siblings by combining both actions, though not explicitly differentiating from pinterest_search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool vs siblings. The context is implied by the name and description, but lacks when-not-to-use or alternative mentions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a distinct purpose: retrieving metadata, searching, and searching with download. The names and descriptions make it easy to distinguish between them.
All tools use the 'pinterest_' prefix and snake_case, but 'pinterest_search_and_download' combines two verbs while the others use a single verb, introducing slight inconsistency.
Three tools is a minimal but reasonable set for an image search and download service. It covers core functionality without being too sparse or excessive.
The set covers basic search and metadata retrieval, but lacks common Pinterest operations like board management, pinning, or user actions, leaving notable gaps for broader use.
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 Connectors
Personal knowledge base MCP server with semantic search, auto-categorization, metadata extraction
MCP Server for an Agent Task Marketplace
MCP server for Drosophila neuroscience data from VirtualFlyBrain
Related MCP Servers
- AlicenseDqualityDmaintenanceA Model Context Protocol server that enables searching for similar images by text description, integrating Inspire's backend image search capabilities with LLM interfaces like Claude Desktop.13GPL 3.0
- AlicenseNot gradedqualityDmaintenanceMCP server for FG-CLIP embedding services enabling multi-modal similarity computation for text and images.4Apache 2.0
- AlicenseNot gradedqualityAmaintenanceAn MCP server for capturing, searching, and synthesizing knowledge objects with formal ontology, reasoning, and hybrid retrieval.20MIT
- FlicenseAqualityDmaintenanceMCP server that gives AI agents visual intelligence — search Pinterest, analyze images with LLM vision, build a semantic reference library, and retrieve by style or mood.61
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/terryso/mcp-pinterest'
If you have feedback or need assistance with the MCP directory API, please join our Discord server