MCP Pixabay Server
About
# MCP Pixabay Server [](https://www.npmjs.com/package/@sadais/mcp-pixabay-server) [](https://opensource.org/licenses/MIT) [![Build…
Details
- Author
- zhangzhenfei
- GitHub stars
- 1
- Downloads
- 360
- Categories
- Other
Jump to
- Fully compliant MCP protocol server implementation.
- Provides search_images and search_videos tools.
- Supports rich search parameters: query, type, orientation, category, color, safe search, pagination.
- Returns complete resource metadata (URLs, resolution, tags, etc.).
- API key configured via environment variable.
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MCP Pixabay ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install globally with npm install -g @sadais/mcp-pixabay-server or as a project dependency. Set the PIXABAY_API_KEY environment variable, then start the server as a command-line tool (mcp-pixabay-server) or integrate it into an MCP‑compatible environment by adding a configuration block to mcp.json (using npx -y @sadais/mcp-pixabay-server). The server exposes two tools: search_images and search_videos.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp pixabay server": {
"pixabay": {
"command": "npx",
"args": [
"-y",
"@sadais/mcp-pixabay-server"
],
"env": {
"PIXABAY_API_KEY": ""
}
}
}
}
}
McpServers
{
"pixabay": {
"command": "npx",
"args": [
"-y",
"@sadais/mcp-pixabay-server"
],
"env": {
"PIXABAY_API_KEY": ""
}
}
}
MCP Pixabay Server
基于 MCP (Model Context Protocol) 的 Pixabay API 接口服务器,让 AI 模型可以搜索和获取 Pixabay 平台的图片和视频资源。
功能特性
- 完全符合 MCP 协议规范的服务器实现
- 提供两个核心工具:
- search_images - 搜索 Pixabay 图片资源
- search_videos - 搜索 Pixabay 视频资源
- 支持丰富的搜索参数:关键词、图片/视频类型、方向、类别、颜色等
- 返回完整的资源元数据(URL、分辨率、标签等)
- 支持通过环境变量配置 API 密钥
安装
全局安装
npm install -g @sadais/mcp-pixabay-server
项目依赖安装
npm install @sadais/mcp-pixabay-server --save
配置
服务器需要 Pixabay API 密钥才能正常工作。您可以通过环境变量设置它:
export PIXABAY_API_KEY=your_api_key_here
如果您没有 Pixabay API 密钥,可以在 Pixabay API 文档 页面注册并获取。
使用方法
作为命令行工具
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



