Content generation, SEO optimization, and travel planning APIs. Plug into your app in minutes via REST or MCP protocol.
Start free. Scale as you grow. No hidden fees.
10 free calls/day. No credit card needed.
Base URL: https://abcailab.com · Auth: X-API-Key: your_key
Generate blog posts, social media content, email copy, and more using AI.
# Request
curl -X POST https://abcailab.com/mcp/tools/generate_content \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"type": "blog_post",
"topic": "AI tools for small businesses",
"length": "medium",
"tone": "professional"
}'
# Response
{
"content": "# AI Tools for Small Businesses...",
"word_count": 450,
"model": "claude-3"
}
Optimize content for search engines — meta tags, keyword density, readability score.
curl -X POST https://abcailab.com/mcp/tools/seo_optimize \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"content": "Your article text here...",
"target_keyword": "AI tools",
"url": "https://yoursite.com/blog/ai-tools"
}'
# Response
{
"meta_title": "Best AI Tools 2026 | Complete Guide",
"meta_description": "Discover top AI tools...",
"keyword_density": 2.3,
"readability_score": 78,
"suggestions": [...]
}
Generate detailed travel itineraries with activities, restaurants, and logistics.
curl -X POST https://abcailab.com/mcp/tools/travel_plan \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"destination": "Miami, Florida",
"days": 3,
"budget": "moderate",
"interests": ["beach", "nightlife", "food"]
}'
# Response
{
"itinerary": {
"day_1": { "morning": "South Beach...", ... },
"day_2": { ... }
},
"estimated_cost": "$150-200/day"
}
List all available MCP tools and their schemas.
curl https://abcailab.com/mcp/tools \
-H "X-API-Key: your_api_key"
# Response
{
"tools": [
{ "name": "generate_content", "description": "..." },
{ "name": "seo_optimize", "description": "..." },
{ "name": "travel_plan", "description": "..." },
{ "name": "keyword_research", "description": "..." }
]
}
Use our tools directly in Claude Desktop, Cursor, or any MCP-compatible AI client.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"abcailab": {
"url": "https://abcailab.com/mcp/",
"headers": {
"X-API-Key": "your_api_key"
}
}
}
}
Call tools programmatically with any MCP client:
from mcp import ClientSession
import httpx
session = ClientSession(
base_url="https://abcailab.com/mcp/",
headers={"X-API-Key": "your_key"}
)
result = await session.call_tool(
"generate_content",
{"topic": "AI trends"}
)
Get your free API key in 30 seconds. No credit card required.