MCP + REST API · Stripe Billing

AI Tools for Developers

Content generation, SEO optimization, and travel planning APIs. Plug into your app in minutes via REST or MCP protocol.

Start Free View Docs
4AI Tools
10Free calls/day
99.9%Uptime SLA (Pro+)
<200msAvg latency

Simple, transparent pricing

Start free. Scale as you grow. No hidden fees.

Free
$0/mo
Perfect for testing and side projects
  • 10 API calls per day
  • All 4 tools included
  • REST + MCP access
  • No SLA
  • No priority support
Get Free Key
Enterprise
$49/mo
For teams and high-volume applications
  • Unlimited API calls
  • All 4 tools included
  • REST + MCP access
  • Priority support
  • 99.9% SLA guarantee
  • Custom rate limits

Get your free API key

10 free calls/day. No credit card needed.

Your API key:
Save this — it won't be shown again.

API Reference

Base URL: https://abcailab.com · Auth: X-API-Key: your_key

POST /mcp/tools/generate_content Content generation

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"
}
POST /mcp/tools/seo_optimize SEO optimization

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": [...]
}
POST /mcp/tools/travel_plan Travel itinerary

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"
}
GET /mcp/tools List all tools

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": "..." }
  ]
}

MCP Protocol Support

Use our tools directly in Claude Desktop, Cursor, or any MCP-compatible AI client.

Claude Desktop config

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "abcailab": {
      "url": "https://abcailab.com/mcp/",
      "headers": {
        "X-API-Key": "your_api_key"
      }
    }
  }
}

Python SDK

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"}
)

Ready to build?

Get your free API key in 30 seconds. No credit card required.

Start Free Talk to sales