Colour PF Create with splash
Loading…

Connecting PF Create to OpenClaw

Connecting PF Create to OpenClaw

Difficulty: Moderate — requires Node.js and a config file edit.
Requires: Node.js 18+, OpenClaw installation, AI provider API key

Before You Start

  • Your pfk_… API key — find it on your account page
  • Node.js 18+ installed

Config File

Add PF Create to your OpenClaw MCP server config. The general SSE pattern for Node.js MCP clients:

{
  "mcpServers": {
    "pfcreate": {
      "url": "https://mcp.pfcreate.ca/sse",
      "headers": {
        "Authorization": "Bearer pfk_YOUR_KEY_HERE"
      }
    }
  }
}

Steps

  1. Locate your OpenClaw config file (typically ~/.openclaw/config.json or the path shown in your OpenClaw dashboard).
  2. Add the pfcreate block above under mcpServers.
  3. Replace pfk_YOUR_KEY_HERE with your API key.
  4. Restart OpenClaw.
  5. PF Create tools will be available to your OpenClaw agent.

Troubleshooting

Server not connecting — Verify the SSE URL is correct and your pfk_ key is valid.

401 errors — Check the full pfk_ prefix is present in your key.

Back to all connection guides