MCP Overview
Coming soon
Our MCP server exposes the same functionality as our APIs, but through the Model Context Protocol. This allows AI assistants to directly interact with your API.
MCP Endpoint
wss://mcp.picsart.com
Authentication
- Requires Bearer token (same as REST API)
- Token can be generated from your dashboard
Available Tools
list-endpoints
– Get all available endpointsget-endpoint
– Fetch details for a specific endpointexecute-request-body
– Run API requests through MCPsearch-schema
– Search request/response structures
How to Connect
- Claude Desktop: Add MCP server in Settings → MCP → Add URL → paste endpoint + token
- Cursor / VS Code: Update .cursor/mcp.json config with your MCP server URL and token
Example config
{
"mcpServers": {
"picsart": {
"url": "wss://mcp.picsart.com",
"token": "<your_api_token>"
}
}
}
Testing Your MCP Setup
Once configured, you can test your MCP server connection:
- Open your AI editor (Cursor, VS Code, etc.)
- Start a new chat with the AI assistant
- Ask about Picsart Creative APIs - try questions like:
- "How do I remove backgrounds from images?"
- "Show me an example of image enhancement"
- "Create a pattern"
Updated about 23 hours ago