Install
openclaw skills install zizoSearch images and boards in zizo library. Use when user asks to search for images, photos, pictures, visual assets, or boards/collections.
openclaw skills install zizoSearch images and boards in zizo library using zizo.
Environment Variables
export ZIZO_TOKEN=<your_mcp_token> # 从上述页面获取的 token
export ZIZO_SERVER=https://zizo.pro # optional, default: https://zizo.pro
export ZIZO_LIMIT=20 # optional, default: 20
export ZIZO_SCOPE=public # optional, default: public
Note: Configuration is only read from environment variables. No config file is used.
Ensure zizo is configured:
node dist/index.js version to verify installationnode dist/index.js config show to verify configurationnode dist/index.js search images "$QUERY" --limit ${LIMIT:-10} --scope ${SCOPE:-public}
node dist/index.js search boards "$QUERY" --limit ${LIMIT:-10}
$QUERY: Search query (required) - supports Chinese and English--limit: Number of results, default 10--scope: Search scope for images
public: Public images onlymine: User's own imagesall: All accessible imagesUser: "搜索 sunset 相关的图片"
node dist/index.js search images "sunset" --limit 10
User: "Find travel boards"
node dist/index.js search boards "travel" --limit 10
User: "帮我找 5 张风景图"
node dist/index.js search images "风景" --limit 5
| Variable | Description | Default |
|---|---|---|
ZIZO_TOKEN | API token (required) | - |
ZIZO_SERVER | API server URL | https://zizo.pro |
ZIZO_LIMIT | Default result limit | 20 |
ZIZO_SCOPE | Default search scope | public |