Workflow integrations

Use BlogCreator in your writing stack

One CLI command connects MCP tools or an agent skill to our hosted API. Works across editors and agents — no API keys on your machine.

  • Cursor
  • Claude
  • Windsurf
  • VS Code

Choose install type

API endpointhttps://blogcreator.dev

Run in Terminal

bash
curl -fsSL https://raw.githubusercontent.com/khatridhruv-1/ContentCraft-Inspector/master/scripts/install-integration.sh \ | BLOGCREATOR_API_URL="https://blogcreator.dev" bash -s -- mcp --global
  1. 1

    Run the command in Terminal (bash) — AI chat cannot run install scripts for you

  2. 2

    Installer auto-registers in detected MCP client configs when present

  3. 3

    Restart your agent, then ask it to use generate_content

Run in Terminal (not inside AI chat). Requires bash and curl (Node 18+ for MCP). Auto-configures when an MCP client folder is detected; reference config at ~/.blogcreator/mcp.json. Windows: Git Bash or WSL.

REST API

Hosted endpoints

Call BlogCreator from your own apps, CI jobs, or scripts — no MCP server required. All routes are hosted at https://blogcreator.dev.

POST
/api/ai-content

Generate platform-ready content

Request body

{ title: string; tone?: string; platform?: "website" | "linkedin" | "quora" | "medium" | "substack" }

Example

curl -X POST https://blogcreator.dev/api/ai-content \
  -H "Content-Type: application/json" \
  -d '{"title":"B2B SaaS content strategy","platform":"website","tone":"practitioner"}'
POST
/api/analyze

Run deep SEO and readability analysis

Request body

{ content: string }

Example

curl -X POST https://blogcreator.dev/api/analyze \
  -H "Content-Type: application/json" \
  -d '{"content":"Paste your draft here..."}'
POST
/api/outline

Build structured content outlines

Request body

{ content: string }

Example

curl -X POST https://blogcreator.dev/api/outline \
  -H "Content-Type: application/json" \
  -d '{"content":"Your article or brief..."}'

Responses are JSON. Rate limits apply on shared infrastructure — contact us for higher throughput on Pro.

Verify your install

  1. Restart your editor or agent after install
  2. Ask your agent: "Use BlogCreator to generate a short blog outline about content marketing"
  3. Confirm you see a structured outline response (not a generic chat reply)

Common fixes

  • 401 or unauthorizedCopy the install command from this page — API URL must point to https://blogcreator.dev
  • Tool not found after installRestart Cursor or Claude Desktop completely. MCP configs load on startup.
  • Install script failsRun from Terminal (bash), not inside AI chat. Requires curl and bash.

Still stuck? Help troubleshooting or contact support · GitHub repo.