Openverse
live MediaOpen AccessCreative-Commons-licensed image + audio search (Wikimedia, Flickr, museums). Keyless (anonymous rate-limit).
6 tools
0ms auth
free tier 50 calls/day
Tools
search_images
required: query Search CC-licensed images.
Parameters
Name Type Description
query req string — license opt string — license_type opt string — size opt string — source opt string — page opt number — page_size opt number — Try it
Response
search_audio
required: query Search CC-licensed audio.
Parameters
Name Type Description
query req string — license opt string — license_type opt string — source opt string — page opt number — page_size opt number — Try it
Response
get_image
required: id Single image record by id.
Parameters
Name Type Description
id req string — Try it
Response
get_audio
required: id Single audio record by id.
Parameters
Name Type Description
id req string — Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/openverse/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/openverse/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_images","arguments":{"query": "hello"}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_images", {"query":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("creative-commons-licensed image + audio search (wikimedia, flickr, museums)"); Related packs
Other Pipeworx packs in the same categories (Media, Open Access):