search_images
Pack: pixabay · Endpoint: https://gateway.pipeworx.io/pixabay/mcp
Search Pixabay’s library of royalty-free photos and illustrations by keyword, image_type, category, orientation, colors, or order; returns URLs in multiple sizes, tags, likes, and download counts.
Example call
Arguments
{
"q": "sunset beach",
"_apiKey": "your-pixabay-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/pixabay/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_images","arguments":{"q":"sunset beach","_apiKey":"your-pixabay-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_images', {
"q": "sunset beach",
"_apiKey": "your-pixabay-api-key"
});
More examples
{
"q": "mountain landscape",
"per_page": 20,
"_apiKey": "your-pixabay-api-key"
}
Response shape
| Field | Type | Description |
|---|
Full JSON Schema
{
"type": "object",
"properties": {},
"additionalProperties": true,
"description": "Response from Pixabay image search API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pixabay": {
"url": "https://gateway.pipeworx.io/pixabay/mcp"
}
}
}
See Getting Started for client-specific install steps.