Connect Luvia Pix to AI Agents
Enable Claude, ChatGPT, Grok, Gemini, Cursor, and n8n to convert images, compress photos, and generate PDFs directly inside chat.
Claude Desktop & Cursor IDE
Model Context Protocol (MCP)Luvia Pix provides an official Stdio and SSE transport MCP server (`@luvia-pix/mcp`). Claude and Cursor can autonomously call image conversion tools.
claude_desktop_config.json or .cursor/mcp.json:{
"mcpServers": {
"luvia-pix": {
"command": "npx",
"args": ["-y", "@luvia-pix/mcp"],
"env": {
"LUVIA_PIX_API_KEY": "pix_live_YOUR_KEY_HERE"
}
}
}
} ChatGPT GPT Store (Custom GPT Action)
OpenAPI 3.1Import Luvia Pix OpenAPI schema into ChatGPT GPT Builder to allow ChatGPT to edit and convert images in your chats.
https://api.luvia.page/openapi.json You are Luvia Pix, an AI image processing assistant. When users ask to convert images (HEIC to PNG, WebP to PDF), compress photos, or crop images, use the Luvia Pix action. Format responses cleanly with direct download links.
xAI Grok Plugin Registry
AI Plugin SpecificationConnect Grok to Luvia Pix via the standard AI Plugin manifest format.
https://pix.luvia.page/.well-known/ai-plugin.json Gemini Agent Extension
Extension ManifestRegister Luvia Pix as an extension for Google Gemini CLI & Agent workflows.
https://pix.luvia.page/.well-known/gemini-extension.json NPM SDK & TypeScript Integration
npm packagenpm install @luvia-pix/sdkimport { LuviaPix } from 'luvia-pix';
const pix = new LuviaPix({ apiKey: 'pix_live_YOUR_API_KEY' });
const result = await pix.convert({
url: 'https://example.com/photo.heic',
to: 'png',
quality: 90
});
console.log('Converted PNG URL:', result.url);