For AI builders · REST API + MCP server

Give your AI agent a LinkedIn content engine

Spur AI is Claude-powered. Call it from your own agent over a plain REST API, or plug in the MCP server and let Claude Desktop, Claude Code, or any MCP client generate posts, hooks, and DMs on demand.

Request an API key →

REST API

One authenticated POST. Works from any language or agent framework.

curl -X POST https://www.trispur.com/api/v1/generate-post \
  -H "x-api-key: spur_sk_..." \
  -H "Content-Type: application/json" \
  -d '{
    "niche": "saas",
    "type": "contrarian",
    "context": "pricing strategy"
  }'

Response:

{
  "post": "Unpopular opinion: your pricing page is...",
  "meta": { "niche": "saas", "type": "contrarian",
            "model": "claude-haiku-4-5", "provider": "anthropic" }
}

Parameters

FieldRequiredNotes
nicheyesconsulting, agency, coach, saas, recruiter, finance — or any custom audience string
typenostory (default), contrarian, howto, results, list
contextnotopic / angle / details to include

MCP server

Prefer the Model Context Protocol? Run Spur as an MCP server and any MCP client can call it as a tool.

# Claude Code
claude mcp add spur-ai \
  --env SPUR_API_KEY=spur_sk_... \
  -- node /path/to/spur-mcp-server.mjs

Server + full setup (Claude Desktop config included) in the mcp/ folder on GitHub.

Request an API key

Keys are issued to early builders while the API is in beta. Drop your email and we'll send you a key and the docs.

Get an API key + MCP setup guide for building on Spur AI.

Building an agent that needs more than posts (hooks, DMs, carousels)? Tell us at hello@trispur.com.