Serveur MCP
Exposez la conversion low-poly comme outils natifs dans Claude Desktop, Cursor, et autres clients MCP.
Endpoint
POST https://low-poly.com/mcp
JSON-RPC 2.0 over HTTP. Bearer auth — re-use any low-poly API key.
Tools
list_supported_formats— what we can read / write.count_polygons— triangle / vertex stats for a model URL.convert_to_low_poly— decimate a remote model with a ratio.convert_format— pure format swap.
Claude Desktop / Cursor config
Use the generic mcp-remote bridge (no install needed beyond Node 18+):
{
"mcpServers": {
"low-poly": {
"command": "npx",
"args": ["mcp-remote", "https://low-poly.com/mcp"],
"env": { "LOWPOLY_API_KEY": "lp_live_..." }
}
}
}
The bridge translates the stdio protocol your IDE speaks into HTTP calls to our endpoint, forwarding the bearer token from LOWPOLY_API_KEY.