Pexels MCP Server
Enables searching and displaying high-quality, royalty-free photos from Pexels directly in ChatGPT conversations via an interactive gallery widget.
README
Pexels ChatGPT App
A ChatGPT App that brings high-quality, royalty-free photography from Pexels directly into your conversations. Built with the Model Context Protocol (MCP) and powered by Cloudflare Workers.

What is This?
This project is a Model Context Protocol (MCP) server that integrates the Pexels API into ChatGPT. Users can search for professional stock photos directly in their chat conversations and view results in an interactive, responsive gallery widget.
Key Features
- 🔍 Advanced Photo Search - Search by keywords, orientation, color palette, size, and more
- 🎨 Interactive Gallery Widget - Beautiful carousel interface with photo cards
- 🌓 Theme Aware - Automatically adapts to light/dark mode
- ♿ Accessible - Full screen reader support and keyboard navigation
- ⚡ Serverless - Runs on Cloudflare Workers edge network for global performance
- 📱 Responsive - Works seamlessly across desktop, tablet, and mobile
Architecture
This project demonstrates a complete MCP application architecture:
┌─────────────────────────────────────────────────────────────┐
│ ChatGPT UI │
├─────────────────────────────────────────────────────────────┤
│ React Widget (Embedded Gallery) │
│ ↓ Uses OpenAI SDK │
├─────────────────────────────────────────────────────────────┤
│ MCP Protocol (SSE) │
│ ↓ Tool Invocation │
├─────────────────────────────────────────────────────────────┤
│ Cloudflare Worker (Durable Objects) │
│ ↓ HTTP Request │
├─────────────────────────────────────────────────────────────┤
│ Pexels API (https://api.pexels.com) │
└─────────────────────────────────────────────────────────────┘
Tech Stack
Backend:
- Cloudflare Workers - Serverless edge computing
- Durable Objects - Stateful MCP server instances
- @modelcontextprotocol/sdk - MCP implementation
- TypeScript 5.9.3
Frontend:
- React 18.3.1 - UI framework
- embla-carousel-react - Carousel functionality
- lucide-react - Icon library
- esbuild - Fast bundler
External API:
- Pexels API - Free stock photography
Project Structure
pexels-app/
├── src/ # Backend (Cloudflare Worker)
│ ├── index.ts # MCP Durable Object & worker entry
│ ├── types.ts # Shared TypeScript types
│ ├── tools/
│ │ └── pexels.ts # Pexels search tool implementation
│ └── components/
│ ├── react-widget-inline.ts # Bundled React widget (auto-generated)
│ └── react-widget-resource.ts # HTML wrapper for widget
│
├── web/ # Frontend (React Widget)
│ ├── src/
│ │ ├── component.tsx # React entry point
│ │ ├── theme.tsx # Theme tokens & context
│ │ ├── components/
│ │ │ ├── App.tsx # Main gallery application
│ │ │ └── cards/ # Photo card components
│ │ └── hooks/
│ │ ├── use-openai-global.ts # OpenAI SDK integration
│ │ └── use-widget-state.ts # Persistent state management
│ └── dist/ # Build output
│
├── scripts/
│ └── inline-react-widget.js # Bundles React into Worker
│
├── docs/ # Comprehensive documentation
│ ├── ARCHITECTURE.md # System design
│ ├── DEPLOYMENT-GUIDE.md # Deployment instructions
│ └── ... # More guides
│
├── wrangler.jsonc # Cloudflare Worker config
├── .dev.vars.example # Environment variable template
└── package.json # Dependencies & scripts
Getting Started
Prerequisites
- Node.js 18+ and npm
- Pexels API key (free)
- Cloudflare account (free tier available)
Installation
-
Clone the repository:
git clone https://github.com/yourusername/pexels-app.git cd pexels-app -
Install dependencies:
npm install cd web && npm install && cd .. -
Configure environment variables:
cp .dev.vars.example .dev.varsEdit
.dev.varsand add your Pexels API key:PEXELS_API_KEY=your_actual_api_key_here -
Build and run locally:
npm run devThe MCP server will be available at
http://localhost:8787
Deployment
-
Authenticate with Cloudflare:
npx wrangler login -
Set production secrets:
npx wrangler secret put PEXELS_API_KEY # Enter your API key when prompted -
Deploy to Cloudflare:
npm run deployYour app will be live at
https://your-worker-name.workers.dev
Usage
MCP Tool: pexels.searchPhotos
Search the Pexels library with powerful filtering options:
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
query |
string | Yes | Search keywords (1-120 characters) |
page |
number | No | Page number (1-50, default: 1) |
perPage |
number | No | Results per page (1-30, default: 12) |
orientation |
string | No | landscape, portrait, or square |
size |
string | No | large, medium, or small |
color |
string | No | Hex code or color keyword |
locale |
string | No | ISO locale code (e.g., en-US) |
Example in ChatGPT:
User: Show me portrait photos of mountain landscapes
[ChatGPT invokes: pexels.searchPhotos({
query: "mountain landscapes",
orientation: "portrait",
perPage: 15
})]
[Interactive gallery widget displays with 15 photos]
Output:
- Text summary: "Found X Pexels photos for 'query'"
- Interactive gallery widget with photo cards
- Each card shows:
- High-quality photo preview
- Photographer attribution
- "View on Pexels" button (opens in new tab)
Development
NPM Scripts
# Development
npm start # Start local dev server
npm run dev # Same as start
# Building
npm run build:widget # Build React widget only
npm run deploy # Build everything and deploy
# React Development (in web/ directory)
cd web
npm run build # Build React bundle
npm run watch # Watch mode for React changes
# Type Checking
npm run type-check # Check TypeScript types
Development Workflow
- Make changes to React widget (
web/src/) - Build widget:
cd web && npm run build - Inline bundle:
node scripts/inline-react-widget.js - Test locally:
npm run dev - Deploy:
npm run deploy
For faster iteration, use watch mode in a separate terminal:
cd web && npm run watch
Configuration
Environment Variables
Development (.dev.vars):
PEXELS_API_KEY=your_api_key_here
Production (Cloudflare Secrets):
npx wrangler secret put PEXELS_API_KEY
npx wrangler secret list # View configured secrets
Wrangler Configuration
Key settings in wrangler.jsonc:
{
"name": "pexels",
"main": "src/index.ts",
"compatibility_date": "2025-03-10",
"durable_objects": {
"bindings": [{
"class_name": "MyMCP",
"name": "MCP_OBJECT"
}]
},
"vars": {
"PEXELS_API_BASE_URL": "https://api.pexels.com/v1"
}
}
Documentation
Comprehensive documentation is available in the docs/ directory:
- ARCHITECTURE.md - How frontend and backend connect
- DEPLOYMENT-GUIDE.md - Complete deployment instructions
- PROJECT-TOUR.md - File-by-file walkthrough
- APP_DESIGN_GUIDELINES.md - OpenAI design principles
- METADATA-OPTIMIZATION.md - MCP metadata tuning
- FUTURE-UI-UX-GUIDE.md - UI styling best practices
- WRANGLER-SECRET-COMMANDS.md - Secret management
Design Philosophy
This project follows OpenAI's ChatGPT App design guidelines:
- Conversational - Seamlessly integrated into chat flow
- Intelligent - Context-aware tool invocation
- Simple - Focused, single-purpose interactions
- Responsive - Fast, lightweight, edge-optimized
- Accessible - Screen reader support, keyboard navigation
UI/UX Principles
- System-First Design - Inherits ChatGPT's colors, fonts, and spacing
- Theme Tokens - Dynamic light/dark theme support
- Transparent Backgrounds - Blends naturally with host environment
- Component-Scoped Styles - No global CSS to avoid conflicts
- Minimal Branding - Only subtle accent colors on CTAs
API Reference
Pexels API Integration
The tool makes requests to the Pexels API v1:
Endpoint: GET https://api.pexels.com/v1/search
Authentication: Bearer token via Authorization header
Rate Limits: 200 requests/hour (free tier)
Response Format: Normalized from snake_case to camelCase for TypeScript
For full Pexels API documentation, visit: https://www.pexels.com/api/documentation/
Advanced Features
Custom React Hooks
useOpenAiGlobal(key) - Access OpenAI SDK globals
const theme = useOpenAiGlobal('theme'); // 'light' | 'dark'
const toolOutput = useOpenAiGlobal('toolOutput'); // Tool result data
useWidgetState(defaultState) - Persistent widget state
const [state, setState] = useWidgetState({ page: 1 });
// State survives widget remounts
useThemeTokens() - Access theme design tokens
const tokens = useThemeTokens();
// tokens.colors.background, tokens.fonts.body, etc.
Type Safety
- Full TypeScript coverage with strict mode
- Zod validation for all tool inputs
- Shared types between frontend and backend
- Automatic type inference from OpenAI SDK
Error Handling
Graceful handling of:
- API authentication failures
- Network errors
- Missing configuration
- Invalid parameters
- Empty search results
- User-friendly error messages in widget
Security
Content Security Policy
The widget enforces a strict CSP:
default-src 'none';
script-src 'self' 'unsafe-inline';
style-src 'self' 'unsafe-inline';
img-src 'self' data: https://images.pexels.com;
frame-ancestors 'none';
Best Practices
- API keys stored as Cloudflare secrets (never in code)
.dev.vars.exampleprovided as template- Input validation with Zod schemas
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- Pexels - For providing free, high-quality stock photography
- Cloudflare Workers - For serverless infrastructure
- OpenAI - For ChatGPT and the MCP specification
- Model Context Protocol - For the protocol specification
Learn More
MCP Resources
Cloudflare Resources
ChatGPT App Development
Built with ❤️ using the Model Context Protocol
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。