AI-powered SEO content generation for Etsy sellers. Use in browser or integrate with Claude Desktop via MCP.
10 free generations per day âĸ No signup required
AI is working...
Generate perfect titles, descriptions, and tags in 10 seconds instead of 3 hours of manual work.
All content follows Etsy's rules: 140-char titles, 13 tags max, keyword-rich descriptions.
Powered by Google Gemini 2.5 Flash for cutting-edge natural language understanding.
Use directly in Claude Desktop via Model Context Protocol. Seamless AI workflow.
10 generations per day, completely free. No credit card required, no hidden fees.
Used by Etsy sellers to improve rankings and increase sales. Real results, real impact.
Model Context Protocol (MCP) allows Claude Desktop to connect with external tools like this SEO generator. Once set up, you can generate Etsy SEO directly within your Claude conversations!
Clone this repository and install dependencies:
git clone https://github.com/YOUR_USERNAME/etsy-seo-mcp.git
cd etsy-seo-mcp
npm install
Get a free API key from Google Gemini:
Create a .env
file:
GEMINI_API_KEY=your-api-key-here
NODE_ENV=development
PORT=3001
Add the MCP server to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"etsy-seo": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/etsy-seo-mcp/server.js"],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
}
}
}
}
â ī¸ Important: Replace /ABSOLUTE/PATH/TO/
with your actual full path!
Close and reopen Claude Desktop completely for changes to take effect.
In Claude Desktop, try this prompt:
Generate Etsy SEO for "handmade ceramic coffee mug" in the Home & Living category
Claude will automatically use the MCP tool to generate your SEO content!
You can now generate Etsy SEO directly in Claude Desktop. No need to switch between windows!
POST /api/generate-free
Request Body:
{
"product_name": "handmade ceramic mug",
"category": "Home & Living",
"email": "user@example.com"
}
Response:
{
"success": true,
"data": {
"title": "Handmade Ceramic Coffee Mug | Artisan Pottery...",
"description": "Elevate your daily ritual with our beautiful...",
"tags": [
"handmade mug",
"ceramic mug",
"coffee cup",
"pottery",
"artisan mug",
"handcrafted",
"home decor",
"kitchen",
"drinkware",
"gift",
"unique mug",
"ceramic cup",
"coffee gift"
],
"suggested_price_range": "$30-$55"
},
"meta": {
"remaining_today": 9,
"provider": "Google Gemini 2.5 Flash"
}
}
curl -X POST https://devqora.space/api/generate-free \
-H "Content-Type: application/json" \
-d '{
"product_name": "handmade ceramic mug",
"category": "Home & Living",
"email": "user@example.com"
}'
const response = await fetch('https://devqora.space/api/generate-free', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
product_name: 'handmade ceramic mug',
category: 'Home & Living',
email: 'user@example.com'
})
});
const data = await response.json();
console.log(data.data.title);
console.log(data.data.tags);
Start generating AI-powered content in seconds
đ Try Free Generator10 free generations per day âĸ No credit card required
You've used all 10 free generations for today. Want unlimited access?