Behance MCP Server
A powerful Model Context Protocol (MCP) server for scraping Behance.net. Extract projects, user profiles, images, and job listings from Behance's creative community without any API keys or subscriptions.
README
🔍 Behance MCP Server
A powerful Model Context Protocol (MCP) server for scraping Behance.net. Extract projects, user profiles, images, and job listings from Behance's creative community without any API keys or subscriptions.
✨ Features
- 🔍 Search Projects - Find creative projects by keyword with full metadata (title, creator, stats, fields)
- 👤 User Profiles - Extract designer and agency profile information
- 🖼️ Images - Search and collect images from Behance portfolios
- 💼 Jobs - Get creative job listings with filters (location, category, remote)
- 📊 Detailed Data - Comprehensive information including descriptions, tools, tags, and media
- 🔒 No API Key Required - Uses web scraping, no Behance API key needed
- 💰 Completely Free - No monthly fees or usage limits (unlike Apify's $25/month)
🚀 Quick Start
Prerequisites
- Node.js 18 or higher
- npm (comes with Node.js)
Installation
# Clone the repository
git clone https://github.com/Arnonfr/behance-mcp-server.git
cd behance-mcp-server
# Install dependencies
npm install
# Build the TypeScript code
npm run build
Alternative: Install via npx (Coming Soon)
npx behance-mcp-server
⚙️ Configuration
Claude Desktop
Add to your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%/Claude/claude_desktop_config.json
Linux:
~/.config/Claude/claude_desktop_config.json
Configuration:
{
"mcpServers": {
"behance": {
"command": "node",
"args": ["/absolute/path/to/behance-mcp-server/dist/index.js"]
}
}
}
Cursor
Add to your Cursor MCP settings (Settings → Features → MCP):
{
"mcpServers": {
"behance": {
"command": "node",
"args": ["/absolute/path/to/behance-mcp-server/dist/index.js"]
}
}
}
VS Code / GitHub Copilot
{
"mcpServers": {
"behance": {
"command": "node",
"args": ["/absolute/path/to/behance-mcp-server/dist/index.js"]
}
}
}
Kimi Code CLI
Add to your Kimi MCP configuration (~/.kimi/mcp.json):
{
"mcpServers": {
"behance": {
"command": "node",
"args": ["/absolute/path/to/behance-mcp-server/dist/index.js"]
}
}
}
🛠️ Available Tools
1. search_behance_projects
Search for creative projects on Behance.
Parameters:
keyword(string, required): Search term (e.g., "branding", "UI design")maxItems(number, optional): Maximum results (default: 50, max: 200)
Returns:
- Project ID, title, URL
- Creator name and profile URL
- Thumbnail image
- Stats: views, appreciations, comments
- Creative fields/categories
Example:
{
"keyword": "logo design",
"maxItems": 10
}
2. get_behance_project_details
Get detailed information about a specific project.
Parameters:
projectUrl(string, required): Full Behance project URL
Returns:
- Full description
- All project images
- Tags
- Tools used
Example:
{
"projectUrl": "https://www.behance.net/gallery/123456789/Project-Name"
}
3. search_behance_profiles
Search for user profiles on Behance.
Parameters:
keyword(string, required): Search term (e.g., "designer", "illustrator")maxItems(number, optional): Maximum results (default: 50, max: 200)
Returns:
- Username and display name
- Avatar image
- Location
- Followers, appreciations, views
- Project count
- Hiring status
Example:
{
"keyword": "UI designer London",
"maxItems": 20
}
4. get_behance_profile_details
Get detailed profile information.
Parameters:
profileUrl(string, required): Full Behance profile URL
Returns:
- Bio
- Company and occupation
- Social media links
- Complete statistics
Example:
{
"profileUrl": "https://www.behance.net/username"
}
5. search_behance_images
Search for images on Behance.
Parameters:
keyword(string, required): Search term (e.g., "logo", "3d render")maxItems(number, optional): Maximum results (default: 50, max: 200)
Returns:
- Image URLs with dimensions
- Associated project info
- Creator details
Example:
{
"keyword": "3d render",
"maxItems": 30
}
6. get_behance_jobs
Get job listings from Behance.
Parameters:
maxItems(number, optional): Maximum results (default: 50, max: 100)location(string, optional): Filter by location (e.g., "New York", "Remote")category(string, optional): Filter by category (e.g., "Graphic Design")
Returns:
- Job title and company
- Location and job type
- Posted date
- Required skills
- Remote availability
Example:
{
"maxItems": 20,
"location": "Remote",
"category": "UI/UX"
}
7. get_behance_job_details
Get detailed job listing information.
Parameters:
jobUrl(string, required): Full Behance job URL
Returns:
- Full job description
- Salary information (if available)
💡 Usage Examples
Search for branding projects:
Search for "branding" projects on Behance, limit to 20 results
Find designers in a location:
Search for UI designer profiles in London
Get job listings:
Get remote graphic design jobs from Behance
Extract project details:
Get full details for project https://www.behance.net/gallery/123456789/Project-Name
🏗️ Development
# Install dependencies
npm install
# Build the project
npm run build
# Watch mode for development
npm run dev
# Run the server
npm start
🧪 Testing
Run the test suite:
npm test
🔧 Troubleshooting
Browser not launching
Make sure you have Chrome/Chromium installed. Puppeteer will download Chromium automatically on first run.
# If Puppeteer fails to download Chromium, try:
PUPPETEER_SKIP_DOWNLOAD=true npm install
npx puppeteer browsers install chrome
Timeout errors
Behance may have rate limiting. Try reducing maxItems or adding delays between requests.
Memory issues
For large scraping operations, consider running with increased Node.js memory:
node --max-old-space-size=4096 dist/index.js
macOS permissions
If you get permission errors on macOS:
# Allow the binary to run
xattr -dr com.apple.quarantine node_modules/puppeteer/.local-chromium/*/chrome-mac/Chromium.app
💰 Pricing Comparison
| Feature | Behance MCP Server | Apify Behance Scraper |
|---|---|---|
| Monthly Cost | FREE | $25/month + usage |
| API Key Required | No | Yes |
| Rate Limits | None (respectful scraping) | Varies |
| Setup Time | 5 minutes | 2 minutes |
| Open Source | ✅ Yes | ❌ No |
| Self-hosted | ✅ Yes | ❌ No |
📁 Project Structure
behance-mcp-server/
├── src/
│ ├── index.ts # MCP server implementation
│ └── scraper.ts # Behance scraping logic
├── dist/ # Compiled JavaScript
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
├── config-example.json # Example MCP configuration
├── LICENSE # MIT License
└── README.md # This file
🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Development Setup
# Fork and clone
git clone https://github.com/YOUR_USERNAME/behance-mcp-server.git
cd behance-mcp-server
# Install dependencies
npm install
# Create a branch
git checkout -b feature/my-feature
# Make changes and test
npm run build
npm test
# Commit and push
git commit -m "Add my feature"
git push origin feature/my-feature
📝 License
This project is licensed under the MIT License - see the LICENSE file for details.
🙏 Acknowledgments
- Built with Model Context Protocol
- Uses Puppeteer for browser automation
- Inspired by the need for free, open-source data extraction tools
- Thanks to all contributors!
📧 Support
If you encounter any issues or have questions:
- Check the Troubleshooting section
- Open an issue on GitHub
- Join the discussion in the Discussions tab
🔒 Security
This project uses Puppeteer for web scraping. Please use responsibly and respect Behance's terms of service. The scraper includes rate limiting and respectful crawling practices.
Made with ❤️ for the creative community
If you find this project useful, please ⭐ star the repository!
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。