MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
ยฉ 2025 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Pollinations MCP
Pollinations MCP Logo

Pollinations MCP

Model Context Protocol Integration

Overview

The Pollinations MCP server is a multimodal server that enables AI assistants to generate images, audio, and text without requiring authentication. It provides powerful tools for generating image URLs from text prompts, creating images, generating audio responses, converting text to speech, and listing available models.

# Pollinations

The Pollinations MCP server is a multimodal server that enables AI assistants to generate images, audio, and text without requiring authentication. It provides powerful tools for generating image URLs from text prompts, creating images, generating audio responses, converting text to speech, and listing available models.

Installation Instructions


README: https://github.com/pollinations/pollinations

Pollinations.AI Logo

๐Ÿ†• Latest News

  • ๐Ÿ” Auth Dashboard - New and live! Visit auth.pollinations.ai to manage your API tokens and referrer domains. Learn more.
  • ๐Ÿ† Tier System: Seed, Flower, Nectarโ€”higher tiers unlock more features. Details
  • ๐Ÿ” Tier System: Seed, Flower, Nectar tiers. Higher tiers available during limited beta.
  • ๐Ÿ’ฒ Support Us - You can now support us with our new Tip Us button. Optionally connect your Discord account to Ko-Fi to get premium Discord roles!
  • ๐ŸŽต Audio Generation - New text-to-speech and speech-to-text capabilities are now available! Try the openai-audio model - see our API documentation for details.
  • ๐Ÿค– AI Code Assistant - We're excited to announce MentatBot, the autonomous AI coding assistant that implements new features directly from GitHub issues! Simply create an issue describing what you'd like to see, and MentatBot will analyze and implement it. Learn more.
  • ๐Ÿ–ผ๏ธ GPT Image - Introducing our new state-of-the-art text-to-image model, GPT Image, which generates high-resolution, contextually accurate visuals from any prompt. Learn more about OpenAI's latest image generation model here.

Pollinations.AI Logo

๐ŸŒŸ Introduction

Pollinations.AI is an open-source gen AI startup based in Berlin, providing the most easy-to-use, free text and image generation API available. No signups or API keys required. We prioritize your privacy with zero data storage and completely anonymous usage.

๐Ÿš€ Key Features

  • ๐Ÿ”“ 100% Open Source
  • ๐Ÿ†“ Free to use
  • ๐Ÿ”’ Simplicity and privacy: No logins, no keys, no data stored
  • ๐Ÿ–ผ๏ธ Embed like any normal image or text
  • ๐ŸŽต Audio generation: Text-to-speech and speech-to-text capabilities
  • ๐ŸŒ Free AI image and text generation APIs
  • ๐Ÿค Used by various open-source LLMs, bots, and communities
  • ๐ŸŽฃ Easy-to-use React hooks (React Hooks Examples)
  • ๐Ÿค– Autonomous Development: Features implemented by our MentatBot coding assistant through GitHub issues
Star History Chart

๐Ÿš€ Getting Started

Ask DeepWiki

Image Generation

  1. Visit https://pollinations.ai
  2. Type your description in the text box
  3. Click "Generate" and watch the magic happen!

Text Generation

  1. Visit https://text.pollinations.ai
  2. Start chatting with the AI

Audio Generation

  1. Use the openai-audio model with our API (explore voices at OpenAI.fm)
  2. Generate speech from text or transcribe audio to text

MCP Server for AI Assistants

Our MCP (Model Context Protocol) server enables AI assistants like Claude to generate images and audio directly. Learn more

Configuration

Add this to your MCP client configuration:

{
  "mcpServers": {
    "pollinations": {
      "command": "npx",
      "args": [
        "@pollinations/model-context-protocol"
      ]
    }
  }
}

Run with npx (no installation required)

npx @pollinations/model-context-protocol

Community alternatives like MCPollinations are also available.

AI assistants can:

  • Generate images from text descriptions
  • Create text-to-speech audio with various voice options
  • Play audio responses through the system speakers
  • Access all Pollinations.AI models and services
  • List available models, voices, and capabilities

For more advanced usage, check out our API documentation.

๐Ÿ–ฅ๏ธ How to Use

Web Interface

Our web interface is user-friendly and doesn't require any technical knowledge. Simply visit https://pollinations.ai and start creating!

API

Use our API directly in your browser or applications:

https://pollinations.ai/p/conceptual_isometric_world_of_pollinations_ai_surreal_hyperrealistic_digital_garden

Replace the description with your own, and you'll get a unique image based on your words!

๐ŸŽจ Examples

Image Generation

Here's an example of a generated image:

Conceptual Isometric World

Python code to download the generated image:

import requests

def download_image(prompt):
    url = f"https://pollinations.ai/p/{prompt}"
    response = requests.get(url)
    with open('generated_image.jpg', 'wb') as file:
        file.write(response.content)
    print('Image downloaded!')

download_image("conceptual_isometric_world_of_pollinations_ai_surreal_hyperrealistic_digital_garden")

Text Generation

To generate text, use this URL:

https://text.pollinations.ai/What%20is%20artificial%20intelligence?

Audio Generation

To generate audio from text, use this URL:

https://text.pollinations.ai/Welcome%20to%20Pollinations?model=openai-audio&voice=nova

๐Ÿ› ๏ธ Integration

React Hooks

We offer React hooks for easy integration. Example usage:

import React from 'react';
import { usePollinationsImage, usePollinationsText } from '@pollinations/react';
import ReactMarkdown from 'react-markdown';

const AIGeneratedContent = () => {
  const imageUrl = usePollinationsImage("Beautiful landscape of Paris with Eiffel Tower", { width: 800, height: 600, seed: 42 });
  const markdown = usePollinationsText("Write a brief travel guide for Paris, including top attractions and local cuisine in markdown", { seed: 42 });

  return (
    <div>
      <h2>AI-Generated Travel Guide</h2>
      <img src={imageUrl} alt="AI Generated" />
      {markdown ? (
        <ReactMarkdown>{markdown}</ReactMarkdown>
      ) : (
        <p>Loading markdown content...</p>
      )}
    </div>
  );
};

export default AIGeneratedContent;

Check out our Pollinations React Hooks for more details.

Architecture

graph LR
    Q[Bots - Discord, Telegram, WhatsApp] --> L1
    
    N[30+ Mobile and Web Apps] --> L1
    N --> L2
    
    A[pollinations.ai Web Frontend] --> L1
    A --> L2
    
    R[AI Agents - Qwen, Sillytavern, ...] --> L1
    
    AI[AI Assistants - Claude] --> MCP[MCP Server]
    MCP --> L1
    
    L1[Image CDN] --> CF[Cloudflare Worker with R2 Cache]
    L2[Text CDN] --> C
    
    CF --> B
    
    B[image-origin.pollinations.ai - AWS EC2 CPU] --> F[Azure OpenAI - Prompt Enhancing]
    B --> S[LlamaGuard - Safety Checker]
    F --> E[Translation Service - 1 GPU VM]
    E --> D[FLUX image generation model - 2-6 GPU VMs on AWS]
    
    C[text.pollinations.ai - AWS EC2 CPU] --> P[karma.yt - Realtime News]
    C --> SC[Scaleway API]
    C --> DS[Deepseek API]
    C --> G[Azure-hosted Serverless LLMs]
    C --> CFM[Cloudflare AI]
    SC --> MI[Mistral Models]
    SC --> QW[Qwen Models]
    SC --> LL[Llama Models]
    DS --> DM[Deepseek Models]
    G --> H[OpenAI]
    G --> K[Claude]
    CFM --> CFL[Llama & Deepseek Models]

Projects Using Pollinations.AI

โญ GitHub Star Counts: Projects with GitHub repositories include star counts to help you gauge their popularity.

๐Ÿ†• NEW Tag: Projects are marked with the ๐Ÿ†• emoji when they are recently added. This tag is automatically removed after 15 days from the submission date or if no date is specified.

Note: Some projects may be temporarily hidden from this list if they are currently broken or undergoing maintenance.

Pollinations.AI is used in various projects, including:

Vibe Coding โœจ

ProjectDescriptionCreator
Berrry Computer (โญย 0)Make tiny self-contained web apps with AI. Find a tweet with an interesting app...@vgrichina
Qwen-Agent (โญย 10.0k)A framework for developing agentic LLM applications.-
Pollinations Task Master (โญย 12)A task management system that uses AI to help break down and organize...@LousyBook94
SocialScribe (โญย 1)An AI-powered Chrome extension that fixes grammar, rewrites text, and enhances...@sh20raj
PairFusion (โญย 0)A real-time AI powered, scalable and feature-rich collaborative IDE built for...@auraticabhi
CraftUIAn AI-powered tool that simplifies UI design by turning text prompts or images...@imhardikdesai
AI Code GeneratorA websim project that generates code from description, selected programming...@Miencraft2
VibeCoderA conversational coding environment that lets you create applications by...@Aashir__Shaikh
JCode Website BuilderA website generator using Pollinations text API.@rtxpower
Pollinations.DIYA browser-based coding environment based on bolt.diy, featuring integrated...@thomash
NetSimwebsim.ai clone that's actually good@kennet678
Pollin-CoderA free AI-powered website builder that lets anyone create a clean site just by...@r3ap3redit
JustBuildThingsA natural language programming interface that lets users create web...@buildmaster
WebsimA web simulation tool that integrates Pollinations.ai.@thomash

Creative ๐ŸŽจ

ProjectDescriptionCreator
MoneyPrinterTurbo (โญย 38.0k)Simply provide a topic or keyword for a video, and it will automatically...@harry0703
FoldaScan (โญย 178)Use Natural Language to "Converse" with Your Codebase, Folda-Scan Smart Project...@0010skn
Elixpo-Art (โญย 18)A digital art platform that combines AI image generation with traditional...@elixpo
Match-cut video ai (โญย 12)This AI generates video from text in match-cut text style, uses pollinations...@r3ap3redit
POLLIPAPERA dynamic wallpaper app that uses Pollinations AI.@intolerant0ne
Elixpo Art (โญย 8)A Web interface to create thematic images from prompts, with multiple aspect...Ayushman Bhattach...
Elixpo Art Chrome Extension (โญย 8)It uses the pollinations image endpoint to generate an image with boltning as...Ayushman Bhatacharya
Pollinations.ai Image Generation (for Frame) (โญย 6)A Flutter application that listens for image generation prompts, requests...CitizenOneX
Imagen (โญย 3)A beautiful web interface for generating images using Pollinations.ai API with...@altkriz
MASala (โญย 3)Multi-Agent AI That Cooks Up Recipes Just for You ~ From fridge to feast,...@Naman009
Imagen (โญย 3)A beautiful web interface for generating images using Pollinations.ai API with...@altkriz
CatGPT Meme Generator ๐Ÿฑ (โญย 2)Transform your questions into sassy cat wisdom! An AI-powered meme generator...@voodoohop
Dreamscape AI (โญย 2)Dreamscape AI is a creative studio for generating, enhancing, and transforming...@sizzlebop
๐Ÿ†• Evolve AI ๐Ÿค– (โญย 0)Evolve AI is an intelligent assistant platform that brings together a variety...@chandankumarm55
๐Ÿ†• What is this? โ” (โญย 0)A fun AI-powered object identification tool that helps you identify mysterious...@sizzlebop
๐Ÿ†• ๐Ÿ‡ท๐Ÿ‡บ AimpressAIMpress is a web-based image generation platform that allows users to create...support@aimp...
๐Ÿ†• Vizbo ๐Ÿ“ฑVizbo is a mobile app for AI powered vision board creation.visbo.app@gm...
๐Ÿ†• Imagine Draw AI ๐ŸŽจ (โญย 0)This AI image was created for free using ImagineDraw AI a powerful tool to...TechWithAiTelugu
EzPromptlaEzPromptla is an advanced visual prompt builder and creative partner designed...mohamadizuan...
Argent ScriptAI Voice Generator - Generate text to audio for free and without limits,...Link
UnfoldtechEasily generate new images inspired by the Pexels website with embedded IPTC...kengkreingkr...
Celebrity AI Image Generator (โญย 0)An AI-powered celebrity image generator that uses Pollinations.ai and a1.art...@Colin-Zero
Coloring AI ๐ŸŽจAn intelligent web-based coloring assistant that turns black-and-white sketches...962900862@qq...
JSON Pollinations APIA Deno Deploy API wrapper for Pollinations that provides JSON-formatted...@apersonwhomakess...
MrEgonAIAn image generator powered by pollinations.ai and its image generation models....@mregon
Image CreatorCreate images with multi-language prompts, the language will be automatically...Link
Avatar GenStudioA system for creating custom characters that uses the Pollinations API for...@nic-wq
StoryBolt (โญย 0)Generate stories with enticing narratives and beautiful illustrations. Users...@gumbasil
CalcuBite AICalcuBite AI is a smart tool that analyzes food from images to provide calorie...@sugamdeol
๐Ÿ‡ฎ๐Ÿ‡ฉ Generator AI Image ๐Ÿ‡ฎ๐Ÿ‡ฉAdvanced AI Image Generator adalah platform inovatif yang memungkinkan Anda...@kenthirai
NailsGenCreate beautiful nail art designs with AI. Generate unique nail art designs...lipengliang2...
ImageGen AI ImageGenerate high-quality AI images for any purpose. Features a variety of models...Link
๐Ÿ‡ฎ๐Ÿ‡ฉ RuangRiung AI Image ๐Ÿ‡ฎ๐Ÿ‡ฉ (โญย 0)RuangRiung AI Image Generator is ideal for digital artists, designers, or...@ruangriung
PollinateAI (โญย 0)PollinateAI is an image generation platform that aims to ease the stress of...@Auspicious14
FlowGPTGenerate images on-demand with ChatGPT!-
Image Gen - Uncensored EditionA powerful image generation assistant on HuggingChat.@DeFactOfficial
Foodie AIAn AI application for food analysis that uses advanced artificial intelligence...@Aashir__Shaikh
AIMinistriesA collection of free AI tools including AI chat, writing tools, image...@tolerantone
The Promised PenA free, feature-rich novel writing application that helps writers organize...@soryn.san
๐Ÿ‡จ๐Ÿ‡ณ Text2Image_audio ๐Ÿ‡จ๐Ÿ‡ณ (โญย 0)ๆ–‡็”Ÿๅ›พไธŽๆ–‡็”Ÿ่ฏญ้Ÿณ็ฝ‘็ซ™ - ไธ€ไธชๅˆๅญฆ่€…็š„AI็ผ–็จ‹้กน็›ฎ๏ผŒๆ”ฏๆŒๆ–‡ๆœฌ่ฝฌๅ›พๅƒๅ’Œ้Ÿณ้ข‘็”ŸๆˆๅŠŸ่ƒฝใ€‚(Text to Image and Text to Audio...@peyoba
๐Ÿ‡จ๐Ÿ‡ณ Aiphotoๆ™บ่ƒฝ็ป˜็”ป ๐Ÿ‡จ๐Ÿ‡ณAI่‰บๆœฏๅทฅๅŠ - ๆ™บ่ƒฝ็ป˜็”ป็”Ÿๆˆๅ™จใ€‚่ฟ™ๆ˜ฏไธ€ไธชๅŸบไบŽAI็š„็ป˜็”ป็”Ÿๆˆๅทฅๅ…ท๏ผŒๅฏไปฅๆ นๆฎ็”จๆˆท่พ“ๅ…ฅ็š„ไธญๆ–‡ๆ่ฟฐ่‡ชๅŠจ็”Ÿๆˆ็›ธๅบ”็š„ๅ›พ็‰‡ใ€‚(An AI art workshop -...@qiyimg
๐Ÿ–ฅ๏ธ AI YouTube Shorts GeneratorPython desktop app that automates YouTube Shorts creation with AI-generated...@Sami-Alsahabany
๐Ÿค– Emojiall AI Drawing PlatformA platform focused on allowing users to draw pictures according to their own...@James-Qi
PixPalPixPal is a free AI assistant that can analyze, edit, and generate images,...@andreas_11
๐Ÿ‡ช๐Ÿ‡ธ ๐Ÿ‡ช๐Ÿ‡ธ Generador de presentaciones con imรกgenes y texto V2Una herramienta configurable que permite crear presentaciones con 3 a 20...@juanrivera126
๐Ÿ‡ช๐Ÿ‡ธ Yo el directorWeb para crear peliculas y contenido para youtube, usando Pollinations (Web...@henryecamposs
Imagemate AIImagemate AI is a powerful image generation app designed to turn your...@Shanto-Islam
B&W SVG GeneratorUses Flux (through pollinations) and potrace to create B&W Vector files@pointsguy118
TurboReelA fast AI video generation service for social media content, leveraging...@turbo_reels
Anime Character GeneratorA dedicated AI tool for generating high-quality, unique anime-style characters....@AnimeArtDevs
AI PPT MakerAn AI-powered presentation generator that creates PowerPoint slides from text...@ppt_monster
Promptgenerator.artFREE Art Prompt Generator that helps you turn simple ideas into structured...info@promptg...
Pollinator Android AppAn open-source Android app for text-to-image generation.@gaurav_87680
StorySight (โญย 14)An AI tool that generates illustrations for stories and articles using...@story_viz
๐Ÿ‡ฎ๐Ÿ‡ฉ Generator Text AI ๐Ÿ‡ฎ๐Ÿ‡ฉ (โญย 1)Text-to-image generator using Pollinations, supporting Indonesian and English...@ayick13
Musify - AI Enhanced Music StreamingMusify is your AI-powered music buddy, making your jam sessions smarter and...@Sugamdeol
๐Ÿ‡ง๐Ÿ‡ท Case Me ๐Ÿ‡ง๐Ÿ‡ทA vending machine that creates customized phone cases with photos or other...anaboxmania@...
๐Ÿค– Zelos AI image generatorIt uses Pollinations for both prompt enhancing and image generation, it was a...Link
Own-AIAn AI text-to-image generator.Sujal Goswami
Pollinations.ai Model Comparison (โญย 0)An interactive tool designed to compare outputs from various large language...Link
๐Ÿ‡จ๐Ÿ‡ณ IMyself AI ๐Ÿ‡จ๐Ÿ‡ณๆˆ‘ไปฌๆไพ›้ซ˜่ดจ้‡็š„AI็”ŸๆˆๆœๅŠก๏ผŒๅŒ…ๆ‹ฌๅ›พๅƒ็”Ÿๆˆใ€ๆ–‡ๆœฌ็”Ÿๆˆใ€้Ÿณ้ข‘็”Ÿๆˆๅ’Œ่ฏญ้Ÿณ่ฝฌๆ–‡ๆœฌๆœๅŠก๏ผŒ ่ฎฉๆ‚จ่ฝปๆพๅˆ›ๅปบๅ„็งๅˆ›ๆ„ๅ†…ๅฎนใ€‚ (We provide high-quality...Shadownc

Games ๐ŸŽฒ

ProjectDescriptionCreator
Mindcraft (โญย 3.5k)A web-based Minecraft-inspired game where players can use natural language to...@mindcraft_team
Minecraft AI (Node.js) (โญย 124)A Node.js implementation that uses Pollinations AI to control a Minecraft...@minecraft_ai_dev
Sirius Cybernetics Elevator Challenge (โญย 42)A programming challenge that uses Pollinations AI to simulate...@sirius_dev
AI Character RP (Roblox) (โญย 8)A Roblox game that lets players interact with AI characters powered by...@roblox_ai_dev
Minecraft AI (Python) (โญย 7)A Python implementation that uses Pollinations AI to control a Minecraft...@Amagash
๐Ÿ‡จ๐Ÿ‡ณ ๐Ÿ‡จ๐Ÿ‡ณ ไบ‘ๆธบไป™้€”๏ผšๅ‡กๅฐ˜็ฏ‡ (โญย 7)ใ€Šไบ‘ๆธบไป™้€”๏ผšๅ‡กๅฐ˜็ฏ‡ใ€‹ๆ˜ฏไธ€ไธช็”ฑAI้ฉฑๅŠจ็š„ๆ–‡ๅญ—ไฟฎไป™ๆฒ™็›’ๆธธๆˆ (An AI-driven text cultivation sandbox game...@ZhjGo
DreamHer (โญย 2)Interactive web app that transforms your imagination of a 'dream girl' into a...@_Creation22
AIStorium (โญย 1)Service for generating dynamic stories. Generates stories, images and audio by...@artegoser
RoastMaster AINo detailed description available, but likely a creative/entertainment tool (AI...-
Pollinations AI Game (โญย 0)A Hitchhiker's Guide to the Galaxy themed LLM-based elevator game.@game
Favorite PuzzlesA jigsaw puzzles game for Android, iOS, and web that uses Pollinations feed as...contact@radb...
Juego de Memorizar con PollinationsA memory game that uses Pollinations AI to generate unique image pairs for...@edudev_es
Abyss AscendingA generative cosmic ocean adventure - text-based RPG with AI-driven...@interzone
Deep SagaAn immersive role-playing game with AI-generated worlds, characters, and quests...@saga_studios
Infinite World โ€“ AI GameAn exploration game with procedurally generated environments and creatures...@infinite_world_dev
A Mita (Roblox)A Roblox game about interacting with AI with different personalities. Features...@thespecificdev
๐Ÿ•ฐ๏ธ Time Travel Selfie PortalUpload your selfie, background is automatically removed. Choose a historical...@Argyrisk21
Convince the Weird Maid to Let You Leave the House (Roblox)A Roblox game where a weird maid traps you inside her house. Your goal is to...@wBrowsqq
Aiko AI: With You Til The End (Roblox)A psychological escape room game where you're trapped by Aiko, an AI with a...@youssefelsafi
RETIME - FABRIC OF REALITYA text-based, blind friendly fantasy adventure game powered by Pollinations AI....@TheSingleAlgeria...
๐Ÿงฉ AI Word SearchAI-powered Android app that generates unlimited, personalized word search...hello@island...
roastmyselfie.appAI Personality Analyzer - Get roasted and psychoanalyzed.. just from one...@andres_11
Watch TV with neko (Roblox)Roblox game where you can talk with AI catgirls ๐Ÿพ or just have fun, talking...Link
Infinite Tales (โญย 26)Interactive storytelling platform powered by AI that creates endless narrative...@infinite_tales

Hack-&-Build ๐Ÿ› ๏ธ

ProjectDescriptionCreator
tgpt (โญย 2.7k)ChatGPT in terminal without requiring API keys. Uses Pollinations API endpoints...@aandrew-me
๐Ÿ› ๏ธ AI Content Describer (โญย 60)An extension for NVDA, the free and open-source screen reader for Microsoft...@cartertemm
Server Status Dashboards (โญย 31)A monitoring tool for tracking and visualizing server performance metrics,...@devopper
Mimir AIP (โญย 11)An AI integration platform for developers.@CiaranMcAleer
๐Ÿ’ป๏ธ Windows Walker (โญย 9)Windows Walker โ€“ What Copilot for Windows should have been. AI-powered Windows...@supershivam
CoNavic (โญย 6)A free, open-source browser extension that brings the power of ChatGPT and...@mkantwala
WordPress AI Vision Block (โญย 5)A custom WordPress Gutenberg block that allows you to generate images using the...mahmood-asadi
DominiSigns (โญย 4)Avatar Translator for Dominican Sign Language that uses artificial intelligence...@cmunozdev
Pollinations.AI Enhancer (โญย 3)A frontend-based AI interface designed to deliver a smooth, multimodal, and...@fisven
๐ŸŒฑ Strain Navigator (โญย 1)A collection of tools to help Growers, Breeders & Seed Bankers. Free & Open...@Tolerable
YankoviC (โญย 1)A programming language interpreter written in JavaScript that emulates C/C++...@Sweaterdog
FoodAnalyAn AI application for food analysis that uses advanced artificial intelligence...liukang0120@...
Herramientas IATools designed with Pollinations.AI and the DescartesJS editor, including tools...@herramientas
Pollinations AI Free APIThis project provides a free API interface supporting various text and image...@freeapi
DominiSigns (โญย 0)A WordPress block plugin that lets users create AI-generated images through the...@dominicva
๐Ÿค– DynaSpark API (โญย 0)The DynaSpark API provides simple yet powerful AI capabilities for text...@Th3-C0der
Querynator5000 (โญย 0)Modern AI-first SQL interface for exploring and manipulating databases with...@SuperShivam5000
Pollinations MCP Server (โญย 42)A Model Context Protocol server that enables AI-assisted development through...@pinkpixel-dev
pollinations.ai Python SDKOfficial Python SDK for working with Pollinations' models.@pollinations-ai
MCPollinationsA Model Context Protocol (MCP) server that enables AI assistants to generate...Pink Pixel
Herramientas IA (โญย 24)Tools designed with Pollinations.AI and the DescartesJS editor, including tools...@juanrivera126
pollinations_aiDart/Flutter package for Pollinations API.@Meenapintu
pollinations NPM ModuleJavaScript/Node.js SDK for Pollinations API.-
pypollinationsComprehensive Python wrapper for Pollinations AI API.@KTS-o7
@pollinations/reactReact hooks for easy integration of Pollinations' features.@pollinations
Polli API DashboardDashboard for managing/interacting with Pollinations API.-
๐Ÿ‡จ๐Ÿ‡ณ imggen.top ๐Ÿ‡จ๐Ÿ‡ณCreate stunning AI-generated images in seconds with our free AI image...lipengliang2...
๐Ÿ‡จ๐Ÿ‡ณ Quicker Pollinations AIThis project provides a free API interface supporting various text and image...Link

Chat ๐Ÿ’ฌ

ProjectDescriptionCreator
gpt4free (โญย 64.1k)The official gpt4free repository - various collection of powerful language...xtekky
LobeChat (โญย 21.0k)An open-source, extensible chat UI framework supporting multiple models and...@lobehub
SillyTavern (โญย 14.7k)An LLM frontend for power users. Pollinations permits it to generate text and...-
๐Ÿ‡จ๐Ÿ‡ณ FreeAI ๐Ÿ‡จ๐Ÿ‡ณ (โญย 44)An AI application platform based on Pollinations.AI API, providing free and...@Azad-sl
DynaSpark AI (โญย 20)A versatile AI assistant with advanced image and text generation capabilities.Th3-C0der
OkeyMeta (โญย 10)OkeyMeta is an AI Playground that allows you to chat with different AI models,...@okeymeta
LLM7.io (โญย 7)A free and open AI platform providing advanced multimodal capabilities,...@chigwell
toai.chat (โญย 2)An AI-client-free project dedicated to enabling AI interaction using only curl,...@Veallym0n
EvilChat ๐Ÿ”ฅ๐Ÿค– (โญย 2)An uncensored AI chat interface with dark, sleek design, smooth animations,...@altkriz
๐Ÿค– ๐Ÿ‡ฎ๐Ÿ‡ฉ Rizqi O Chatbot ๐Ÿ‡ฎ๐Ÿ‡ฉ (โญย 1)Rizqi O Chatbot adalah proyek berbasis Pollinations yang menggabungkan tiga...@ray23-bit
Comeback AI (โญย 1)AI-powered clapback machine that transforms mean comments into witty comebacks...@sizzlebop
UltimaX Intelligence (โญย 0)UltimaX Intelligence is a free AI platform that unifies multiple premium AI...@hadadarjt
๐Ÿค– VOID.AI (โญย 0)A humanlike AI mentor, productivity partner, and emotionally intelligent...@Ajay-Dhakad
Ai drafterplusA ChatGPT-like interface with multiple AI models. Completely free and saves...@dexvisser_
Unity AI LabA specialized uncensored LLM model built on Mistral Large, focused on...-
Neurix ๐Ÿ‡ท๐Ÿ‡บA website offering easy and free access to various neural networks, with...@Igroshka
Echo AIA chat interface for AI interactions and conversations.Unknown
DreamBig - Generative AI PlaygroundInteractive AI playground with chat, image generation, and voice responses for...@opzzxsprinta._999
Pal ChatAn iOS app that integrates with all LLMs including Pollinations AI models in...Link
Pollinations AI PlaygroundAn AI application platform based on Pollinations.AI API, providing free and...@playground
Image Gen - Uncensored EditionAn uncensored image generation tool that allows for creative freedom without...@flowgpt
๐Ÿ‡จ๐Ÿ‡ณ Pollinations.AI ไธญๆ–‡ๆˆ‘ไปฌๆไพ›้ซ˜่ดจ้‡็š„AI็”ŸๆˆๆœๅŠก๏ผŒๅŒ…ๆ‹ฌๅ›พๅƒ็”Ÿๆˆใ€ๆ–‡ๆœฌ็”Ÿๆˆใ€้Ÿณ้ข‘็”Ÿๆˆๅ’Œ่ฏญ้Ÿณ่ฝฌๆ–‡ๆœฌๆœๅŠก๏ผŒ ่ฎฉๆ‚จ่ฝปๆพๅˆ›ๅปบๅ„็งๅˆ›ๆ„ๅ†…ๅฎนใ€‚ (We provide high-quality...@pollinations
AnisurgeA free anime streaming app with a public chat feature that allows users to chat...@iotserver24
๐Ÿ–ฅ๏ธ AI ChatA Windows desktop application that brings multiple AI models together in one...@narendradwivedi
๐Ÿค– Free AI Chatbot & Image Generator (โญย 0)A web application offering both conversation with AI and image generation...@aidevs
DeepSeek PromptDeepSeek Prompt is a front-end application for managing and optimizing AI...lipengliang2...
AI Dream Girl StudioAI Dream Girl Studio is a content creation pipeline built around...Link
๐Ÿค– PixPaxA user-friendly chatbot that lets you analyze images, remix existing images or...@andreas_11
๐Ÿค– Mirexa AI ChatA state-of-the-art AI chatbot that seamlessly integrates multiple LLMs with...@withthatway
AI ChatA simple and elegant chat interface for interacting with various AI models...@jolav
KoboldAI LiteA lightweight version of KoboldAI that uses Pollinations for text generation,...@kobold_dev
๐Ÿค– Jenny AIAI chatbot and character creation platform with tts and sst it also has image...Link
GoalaniVoice-enabled AI fitness coach. Using only your voice, you can communicate with...goalani.app@...
Pollinations ChatPollinations' integrated AI for text and images, totally free and unlimited.@adrianoprogramer
LiteAIA free, fast, and anonymous AI chat and image generation platform with no login...LiteAI Team
๐Ÿค– UR Imagine & Chat AIA versatile AI platform offering both image generation and chat...@ur_imagine

Social Bots ๐Ÿค–

ProjectDescriptionCreator
๐Ÿค– Pollinations Discord Bot (โญย 156)Official Discord bot for Pollinations.ai that allows server members to generate...@pollinations
๐Ÿค– Raftar.xyz (โญย 42)Raftar.xyz is an innovative social bot platform that uses Pollinations AI to...@raftar_official
๐Ÿค– ๐ŸŽฎ GachaYour Sassy All-in-One AI Discord Bot. A powerful, sassy, and slightly..._dr_misterio_
๐Ÿค– Aura Chat BotA chat bot integrating Pollinations API for text and image generation.@Py-Phoenix-PJS
๐Ÿค– ๐Ÿค– ImageEditerAI Art Studio - A feature-rich Telegram bot that creates art from text prompts,...@dr_misterio
๐Ÿค– Pollinations Telegram AssistantAn advanced Telegram bot that provides access to Pollinations AI services...@pollen_labs
๐Ÿค– GPT_ProjectGPT_Project Telegram AI Chatbot - A professional productivity tool that's...@lordon4x
๐Ÿค– Pollinations WhatsApp GroupA WhatsApp group bot that allows members to generate AI content through simple...@whatsapp_ai_dev
๐Ÿค– pollinations-tg-bot ๐Ÿ‡จ๐Ÿ‡ณChinese language Telegram bot for Pollinations AI with specialized prompts for...@cn_ai_dev
๐Ÿค– Quick AI & Jolbak (โญย 0)A multi-platform bot suite that integrates with Discord, Slack, and Microsoft...@jolbak_dev
AI Image Generator [ROBLOX] (โญย 0)A Roblox experience that allows players to generate images using Pollinations...@roblox_ai_studio
๐Ÿค– SingodiyaTech botA Telegram bot focused on technical illustrations and diagrams generated by...@singodiya_tech
๐Ÿค– AnyaiA Discord bot and community for AI-driven content.@meow_18838

Learn ๐Ÿ“š

ProjectDescriptionCreator
Connect Pollinations with Open Web UI tutorial (โญย 9)Step-by-step guide on integrating Pollinations APIs with Open Web UI for...@cloph-dsp
Prompt ExplorerA mobile app that combines AI prompt discovery with image generation using...ismail.azdad...
StoryMagic: Interactive Kids StoriesInteractive and educational tool for generating kids' stories.-
RiffleA powerful tool designed to make reading English books more enjoyable and...gsx123@gmail...
OkeyAI (โญย 0)An LLM created by Africans to understand and have cultural awareness of African...@okeymeta
Whizzy AIAn educational AI platform for students featuring AI-powered study assistance,...@vaibhavcoding69
AIๅ„ฟ็ซฅๆ•…ไบ‹ ๐Ÿ‡จ๐Ÿ‡ณๅŸบไบŽๆญค้กน็›ฎ ๆž„ๅปบๆœ‰่ถฃ็š„ๅญฉๅญๆ•…ไบ‹ไนฆๅบ”็”จๆผ”็คบ (Based on this project, build an interesting children's...MZ
Pollinations.AI AI/Teens talkSession 2: ai/teens worldwide conference exploring the forces shaping AI today,...@thomash_pollinat...
TeekGenAIA platform providing free access to AI tools like image generation,...@teekgenai
MalaysiaPrompt ๐Ÿ‡ฒ๐Ÿ‡พA resource for discovering and sharing creative prompts, supporting the...-
Artistic Styles BookAn interactive book showcasing 90+ artistic styles.Juan Gmo. Rivera
๐Ÿ‡ง๐Ÿ‡ท TutorialAn in-depth Portuguese tutorial on using Pollinations AI.Janderson de Sales
Podcast #1500Podcast project powered by pollinations, featuring dialogues among LLMs. First...@brain.diver
Proyecto DescartesEducational initiative integrating Pollinations AI into STEM.Juan Gmo. Rivera

Have you created a project using Pollinations.AI? Submit it through our project submission form to get it listed here! We use a structured GitHub issue template to make the submission process easy and organized.

๐Ÿ”ฎ Future Developments

We're constantly exploring new ways to push the boundaries of AI-driven content creation. Some areas we're excited about include:

  • Digital Twins: Creating interactive AI-driven avatars
  • Music Video Generation: Combining AI-generated visuals with music for unique video experiences
  • Real-time AI-driven Visual Experiences: Projects like our Dreamachine, which create immersive, personalized visual journeys

๐ŸŒ Our Vision

Pollinations.AI envisions a future where AI technology is:

  • Open & Accessible: We believe AI should be available to everyone, not locked behind paywalls or restricted access

  • Transparent & Ethical: Our open-source approach ensures transparency in how our models work and behave

  • Community-Driven: We're building a platform where developers, creators, and AI enthusiasts can collaborate and innovate

  • Interconnected: We're creating an ecosystem where AI services can seamlessly work together, fostering innovation through composability

  • Evolving: We embrace the rapid evolution of AI technology while maintaining our commitment to openness and accessibility

We're committed to developing AI technology that serves humanity while respecting ethical boundaries and promoting responsible innovation. Join us in shaping the future of AI.

๐Ÿค Community and Development

We believe in community-driven development. You can contribute to Pollinations.AI in several ways:

  1. Coding Assistant: The easiest way to contribute! Just create a GitHub issue describing the feature you'd like to see implemented. The MentatBot AI assistant will analyze and implement it directly! No coding required - just describe what you want.

  2. Project Submissions: Have you built something with Pollinations.AI? Use our project submission template to share it with the community and get it featured in our README.

  3. Feature Requests & Bug Reports: Have an idea or found a bug? Open an issue and let us know. Our team and the MentatBot assistant will review it.

  4. Community Engagement: Join our vibrant Discord community to:

    • Share your creations
    • Get support and help others
    • Collaborate with fellow AI enthusiasts
    • Discuss feature ideas before creating issues

For any questions or support, please visit our Discord channel or create an issue on our GitHub repository.

๐Ÿ—‚๏ธ Project Structure

Our codebase is organized into several key folders, each serving a specific purpose in the Pollinations.AI ecosystem:

  • pollinations.ai/: The main React application for the Pollinations.ai website.

  • image.pollinations.ai/: Backend service for image generation and caching with Cloudflare Workers and R2 storage.

  • pollinations-react/: React component library for Pollinations.ai.

  • text.pollinations.ai/: Backend service for text generation.

  • model-context-protocol/: Model Context Protocol (MCP) server for AI assistants like Claude to generate images directly.

This structure encompasses the frontend website, backend services for image and text generation, and integrations like the Discord bot and MCP server, providing a comprehensive framework for the Pollinations.AI platform.

๐Ÿข Supported By

Pollinations.AI is proud to be supported by:

Supported Companies

  • Portkey AI Gateway: AI Gateway for LLM routing and fallbacks
  • AWS Activate: GPU Cloud Credits
  • Google Cloud for Startups: GPU Cloud Credits
  • NVIDIA Inception: AI startup support
  • Azure (MS for Startups): OpenAI credits
  • Cloudflare: Put the connectivity cloud to work for you.
  • Scaleway: Europe's empowering cloud provider
  • Modal: High-performance AI infrastructure

๐Ÿ“œ License

Pollinations.AI is open-source software licensed under the MIT license.


Made with โค๏ธ by the Pollinations.AI team

Contributors

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.