AI Content MCP Server
"6 AI Tools for Content, Images & Data" by John Rippy | johnrippy.link🏆 2025 Zapier Automation Hero of the Year — Project Phoenix: A 95-step AI sales pipeline cutting development time by 50%. Read more →
---
AI-ready content generation with 6 specialized tools. Generate text with Claude/Gemini, create images with Imagen/DALL-E, extract structured data from any URL, and enrich leads with AI - all through a unified MCP interface.What is MCP?
The Model Context Protocol (MCP) is an open standard that allows AI assistants like Claude, ChatGPT, and Cursor to use external tools. This MCP Server exposes 6 AI content generation tools that AI assistants can call directly.
Available Tools
1. generate_text
Generate high-quality text content using Claude or Gemini Pro models. Perfect for marketing copy, blog posts, social media content, and more.
{
"prompt": "Write a compelling product description for artisan coffee beans",
"model": "claude",
"maxTokens": 500,
"temperature": 0.7
}
Returns: Generated text, token usage, model info
2. generate_text_flash
Generate text quickly using Gemini Flash for high-volume, cost-effective content generation.
{
"prompt": "Generate 5 social media post ideas for a fitness brand",
"maxTokens": 300
}
Returns: Generated text, token usage
3. generate_image
Create images using Google Imagen 4. Ideal for marketing visuals, product imagery, and creative content.
{
"prompt": "A cozy coffee shop interior with warm lighting, modern minimalist design",
"aspectRatio": "16:9",
"style": "photorealistic"
}
Returns: Image URL, generation metadata
4. generate_image_studio
Create images using OpenAI DALL-E 3 with advanced editing capabilities and style control.
{
"prompt": "Professional headshot of a business executive, studio lighting",
"size": "1024x1024",
"quality": "hd",
"style": "natural"
}
Returns: Image URL, revised prompt, metadata
5. extract_data
Extract structured data from any URL using Firecrawl. Perfect for scraping content, extracting product info, or gathering research data.
{
"url": "https://example.com/products/widget",
"schema": {
"name": "string",
"price": "number",
"description": "string",
"features": ["string"]
}
}
Returns: Extracted structured data matching your schema
6. enrich_lead
Enrich lead data using AI to find company info, social profiles, and business intelligence.
{
"email": "john@example.com",
"name": "John Smith",
"company": "Acme Corp"
}
Returns: Enriched lead data with company info, social profiles, job title
Quick Start
Using with Apify (Direct)
# Run via API
curl -X POST "https://api.apify.com/v2/acts/localhowl~ai-content-mcp-server/runs" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"tool": "generate_text",
"toolInput": {
"prompt": "Write a tagline for a local bakery",
"model": "claude"
},
"demoMode": true
}'
Using with Claude Desktop
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"ai-content": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-apify", "--actor", "localhowl~ai-content-mcp-server"],
"env": {
"APIFY_TOKEN": "your_apify_token"
}
}
}
}
Using with n8n
Install the n8n-nodes-johnrippy-seo package for native n8n integration with this MCP server.
Example Prompts for AI Assistants
Once connected, you can ask your AI assistant:
- "Generate a blog post about sustainable living tips"
- "Create an image of a modern office space with plants"
- "Extract product information from this Amazon listing"
- "Enrich this lead with company and social data"
- "Write 10 social media posts for a restaurant launch"
- "Generate a professional headshot-style image"
Use Cases
Marketing Teams
- Generate social media content at scale
- Create on-brand marketing images
- Write email campaigns and ad copy
Sales Teams
- Enrich leads with AI-powered research
- Generate personalized outreach messages
- Extract competitor pricing data
Content Creators
- Generate blog post ideas and outlines
- Create supporting imagery for articles
- Research topics with data extraction
AI-First Workflows
- Claude or ChatGPT can generate content on demand
- Automated content pipelines with AI generation
- Natural language interface to content creation
Pricing
Pay-per-event pricing on Apify:- Base cost per run
- Additional costs based on underlying AI model usage (Claude, Gemini, DALL-E, Imagen)
Demo mode is free and returns realistic sample data.
Related Tools
This MCP Server bundles these underlying Apify actors:
nanobanana-pro- Claude/Gemini Pro text generationnanobanana-flash- Gemini Flash text generationgemini-image-generator- Google Imagen image generationai-image-studio- DALL-E image generationai-extraction-agent- Firecrawl data extractionfire-enrich- AI lead enrichment
Support
- GitHub: Issues
- LinkedIn: John Rippy
- Website: johnrippy.link
🏆 2025 Zapier Automation Hero of the Year — Project Phoenix: A 95-step AI sales pipeline cutting development time by 50%. Read more →
License
MIT License - Free to use for any purpose.