MCP Pixabay Server

by zhangzhenfei

1 stars
360 downloads
Not rated
GitHub

About

# MCP Pixabay Server [![npm version](https://img.shields.io/npm/v/@sadais/mcp-pixabay-server.svg)](https://www.npmjs.com/package/@sadais/mcp-pixabay-server) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Build…

Details

Author
zhangzhenfei
GitHub stars
1
Downloads
360
Categories
Other

- 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:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Pixabay Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. 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

npm version
License: MIT
Build Status

基于 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

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.