Skip to main content
Glama

Freepik MCP Server

Servidor MCP de Freepik

Una implementación de servidor MCP para interactuar con la API de Freepik, brindando acceso a fotografías de archivo y capacidades de generación de imágenes de Mystic AI.

Características

  • Buscar recursos de Freepik (fotos, vectores, PSD)
  • Obtenga información detallada sobre los recursos
  • Descargar recursos
  • Generar imágenes usando Mystic AI
  • Comprobar el estado de generación de imágenes

Prerrequisitos

Instalación

# Create a new directory for your MCP servers mkdir mcp-servers cd mcp-servers # Clone the repository git clone https://github.com/MCERQUA/freepik-mcp.git cd freepik-mcp # Install dependencies npm install # Build the server npm run build

Configuración

  1. Primero, obtenga su clave API de Freepik siguiendo las instrucciones en API_SETUP.md
  2. Agregue el servidor a su archivo de configuración MCP:
{ "mcpServers": { "freepik": { "command": "node", "args": ["path/to/freepik-mcp/build/index.js"], "env": { "FREEPIK_API_KEY": "your-api-key-here" }, "disabled": false, "autoApprove": [] } } }

Herramientas disponibles

recursos de búsqueda

Busca recursos de Freepik con varios filtros:

{ term?: string; // Search term limit?: number; // Results per page order?: 'relevance' | 'recent'; filters?: { orientation?: { landscape?: boolean; portrait?: boolean; square?: boolean; panoramic?: boolean; }; content_type?: { photo?: boolean; psd?: boolean; vector?: boolean; }; license?: { freemium?: boolean; premium?: boolean; }; }; }

obtener_recurso

Obtenga información detallada sobre un recurso específico:

{ id: number; // Resource ID to get details for }

recurso de descarga

Obtener la URL de descarga para un recurso específico:

{ id: number; // Resource ID to download }

generar_imagen

Generar una imagen usando Freepik Mystic AI:

{ prompt: string; // Text description of the image to generate resolution?: '2k' | '4k'; aspect_ratio?: 'square_1_1' | 'classic_4_3' | 'traditional_3_4' | 'widescreen_16_9' | 'social_story_9_16'; realism?: boolean; // Enable realistic style engine?: 'automatic' | 'magnific_illusio' | 'magnific_sharpy' | 'magnific_sparkle'; creative_detailing?: number; // 0-100 }

comprobar_estado

Comprobar el estado de una tarea de generación de imágenes de Mystic:

{ task_id: string; // ID of the generation task to check }

Desarrollo

# Install dependencies npm install # Build the server npm run build # Run in development mode npm run dev

Manejo de errores

El servidor implementa un manejo integral de errores:

  • Los errores de API se registran con información detallada
  • Validación de entrada mediante esquemas Zod
  • Respuestas de error adecuadas con contexto
  • Conciencia de limitación de velocidad

Contribuyendo

  1. Bifurcar el repositorio
  2. Crea tu rama de funciones ( git checkout -b feature/amazing-feature )
  3. Confirme sus cambios ( git commit -m 'Add some amazing feature' )
  4. Empujar a la rama ( git push origin feature/amazing-feature )
  5. Abrir una solicitud de extracción

Licencia

Instituto Tecnológico de Massachusetts (MIT)

-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Una implementación de servidor MCP que permite a los usuarios buscar, descargar recursos de Freepik y generar imágenes utilizando Mystic AI a través de solicitudes de lenguaje natural.

  1. Características
    1. Prerrequisitos
      1. Instalación
        1. Configuración
          1. Herramientas disponibles
            1. recursos de búsqueda
            2. obtener\_recurso
            3. recurso de descarga
            4. generar\_imagen
            5. comprobar\_estado
          2. Desarrollo
            1. Manejo de errores
              1. Contribuyendo
                1. Licencia

                  Related MCP Servers

                  • A
                    security
                    A
                    license
                    A
                    quality
                    A MCP server that enables Claude and other MCP-compatible assistants to generate images from text prompts using Together AI's image generation models.
                    Last updated -
                    1
                    2
                    TypeScript
                    MIT License
                    • Apple
                    • Linux
                  • -
                    security
                    A
                    license
                    -
                    quality
                    A MCP server that integrates with Cursor IDE to generate images based on text descriptions using JiMeng AI, allowing users to create and save custom images directly within their development environment.
                    Last updated -
                    160
                    Python
                    MIT License
                    • Apple
                    • Linux
                  • A
                    security
                    A
                    license
                    A
                    quality
                    An MCP Server that integrates with Stability AI's API to provide high-quality image generation, editing, and manipulation capabilities including background removal, outpainting, search-and-replace, and upscaling.
                    Last updated -
                    13
                    35
                    55
                    TypeScript
                    MIT License
                    • Apple
                  • -
                    security
                    A
                    license
                    -
                    quality
                    An MCP server that connects to Pollinations.ai API, enabling AI models to generate and download images and text through natural language commands.
                    Last updated -
                    2
                    JavaScript
                    Apache 2.0
                    • Apple
                    • Linux

                  View all related MCP servers

                  MCP directory API

                  We provide all the information about MCP servers via our MCP API.

                  curl -X GET 'https://glama.ai/api/mcp/v1/servers/MCERQUA/freepik-mcp'

                  If you have feedback or need assistance with the MCP directory API, please join our Discord server