Pixelvault
Official4 toolsby pixelvault-dev
Agent-first image hosting — upload images and get instant CDN URLs.
Upload images and get instant CDN URLs for agent-first image hosting.
Captured live from the server via tools/list.
get_image
Get metadata (CDN URL, size, MIME type, dimensions) for one PixelVault image by id. Maps to GET /v1/images/:id. Requires a PixelVault API key sent as a Bearer token in the Authorization header.
Parameters (1)
- idstringrequired
Image id to fetch, e.g. img_abc123
list_images
List images in your PixelVault project, most recent first. Maps to GET /v1/images with pagination. Requires a PixelVault API key sent as a Bearer token in the Authorization header.
Parameters (2)
- pageinteger
Page number (default 1)
- per_pageinteger
Items per page (default 20, max 100)
delete_image
Permanently delete one PixelVault image by id. Maps to DELETE /v1/images/:id. Requires a PixelVault API key sent as a Bearer token in the Authorization header.
Parameters (1)
- idstringrequired
Image id to delete, e.g. img_abc123
upload_image
Upload an image to PixelVault and get an instant CDN URL. Maps to POST /v1/images. Provide exactly one of `source_url` (a public http(s) URL the server fetches) or `data` (base64-encoded bytes); optional `folder` and `filename`. Max 5 MB; JPG/PNG/GIF/WebP/AVIF/SVG. Requires a PixelVault API key sent as a Bearer token in the Authorization header.
Parameters (4)
- source_urlstring
Public http(s) URL of an image to fetch and upload. Provide this OR data.
- datastring
Base64-encoded image bytes (data URLs accepted). Provide this OR source_url.
- folderstring
Optional folder/path prefix for the image.
- filenamestring
Optional original filename, e.g. photo.png.
README not available yet.
Install
Remote endpoint
Streamable HTTPHosted server - connect over the network, no local install.
https://mcp.pixelvault.dev/mcpclaude_desktop_config.json
{
"mcpServers": {
"pixelvault": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.pixelvault.dev/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.