Freepik MCP Server

Enables interaction with the Freepik API for accessing stock photos, vectors, PSDs, and Mystic AI image generation.

Local serverstdioTypeScript 2

What is the Freepik MCP server?

Enables interaction with the Freepik API for accessing stock photos, vectors, PSDs, and Mystic AI image generation. That is what the freepik mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

An MCP server implementation for interacting with Freepik's API, providing access to stock photos and Mystic AI image generation capabilities.

  • Search Freepik resources (photos, vectors, PSDs)
  • Get detailed resource information
  • Download resources
  • Generate images using Mystic AI
  • Check image generation status

The tools it exposes

The server publishes 5 tools. What each one is for:

  • search_resources — Search for Freepik resources with various filters: typescript { term?: string; // Search term limit?: number; // Results per page order?: 'relevance'
  • get_resource — Get detailed information about a specific resource: typescript { id: number; // Resource ID to get details for }
  • download_resource — Get download URL for a specific resource: typescript { id: number; // Resource ID to download }
  • generate_image — Generate an image using Freepik Mystic AI: typescript { prompt: string; // Text description of the image to generate resolution?: '2k' | '4k'
  • check_status — Check the status of a Mystic image generation task: typescript { task_id: string; // ID of the generation task to check }

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

What it needs from you

Configuration is passed through the environment: FREEPIK_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Freepik's toolset — search_resources, get_resource, download_resource and 2 more — is a fair guide to whether it matches your workflow. It is maintained by MCERQUA; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Freepik's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
search_resourcesSearch for Freepik resources with various filters: typescript { term?: string; // Search term limit?: number; // Results per page order?: 'relevance' | 'recent'; filters?: { orientation?: { landscape?: boolean; portrait?
get_resourceGet detailed information about a specific resource: typescript { id: number; // Resource ID to get details for }
download_resourceGet download URL for a specific resource: typescript { id: number; // Resource ID to download }
generate_imageGenerate an image using Freepik Mystic AI: typescript { prompt: string; // Text description of the image to generate resolution?: '2k' | '4k'; aspect_ratio?: 'square_1_1' | 'classic_4_3' | 'traditional_3_4' | 'widescreen
check_statusCheck the status of a Mystic image generation task: typescript { task_id: string; // ID of the generation task to check }

Configuration

VariableDescriptionRequired
FREEPIK_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Freepik to search resources.
  • Use Freepik to get resource.
  • Use Freepik to download resource.

Frequently asked questions

You need Node.js 18 or higher and a valid Freepik API key, which you can obtain by following the instructions in the API Setup Guide.