pipeworx_getting_started

Pack: pipeworx-faq · Endpoint: https://gateway.pipeworx.io/pipeworx-faq/mcp

Step-by-step instructions for connecting an AI client to Pipeworx — Claude Code, claude.ai, Cursor, Windsurf, Gemini CLI, Perplexity, ChatGPT, or any MCP-capable client. Returns the gateway URL, plugin links, and first-question suggestions. Example: pipeworx_getting_started({ client: “cursor” })

Parameters

NameTypeRequiredDescription
clientstringnoOptional client name, e.g. “claude code”, “cursor”, “windsurf”, “gemini”, “perplexity”, “chatgpt”. Omit for generic MCP instructions.

Example call

Arguments

{
  "client": "cursor"
}

curl

curl -X POST https://gateway.pipeworx.io/pipeworx-faq/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pipeworx_getting_started","arguments":{"client":"cursor"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('pipeworx_getting_started', {
  "client": "cursor"
});

More examples

{
  "client": "claude code"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx-faq": {
      "url": "https://gateway.pipeworx.io/pipeworx-faq/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026