Pollinations MCP Server

使用MCP协议连接Pollinations.ai的图像生成服务

Local serverstdioTypeScript

What is the Pollinations MCP MCP server?

Most developer tooling work still happens through a UI a human drives. Pollinations MCP MCP server moves it into the conversation instead. 使用MCP协议连接Pollinations.ai的图像生成服务.

The short version

  1. 安装并启动Cline 2. 打开Cline的设置文件,通常位于: - Windows: %APPDATA%\Cline\config.json - Mac: ~/Library/Application Support/Cline/config.json - Linux: ~/.config/Cline/config.json

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. The configuration blocks on this page cover the common clients.

The tools it exposes

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

  • generate_image — The generate_image tool exposed by this server
  • download_image — The download_image tool exposed by this server
  • generate_text — The generate_text tool exposed by this server

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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Pollinations MCP's toolset — generate_image, download_image, generate_text — is a fair guide to whether it matches your workflow. It is maintained by bendusy; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
generate_imageThe generate_image tool exposed by this server.
download_imageThe download_image tool exposed by this server.
generate_textThe generate_text tool exposed by this server.

How to install the Pollinations MCP MCP server

"mcpServers": {
  "pollinations-mcp": {
    "command": "node",
    "args": [
      "完整路径/到您的/pollinations-mcp/dist/index.js"
    ],
    "disabled": false,
    "autoApprove": [
      "download_image",
      "generate_image",
      "generate_text"
    ]
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Pollinations MCP to generate image.
  • Use Pollinations MCP to download image.
  • Use Pollinations MCP to generate text.

Frequently asked questions

It connects Pollinations MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (generate_image, download_image, generate_text) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Pollinations MCP directly.