pankoblitz / maternal-promoter-dividers PRO

MCP Integration

Connect AI agents to Pankoblitz using the Model Context Protocol (MCP).

API Token

No access token available. This may happen if you logged in before token storage was enabled.

Re-login to get token

Setup Steps

1

Set your token as an environment variable

Copy your token above and add it to your shell profile (~/.bashrc, ~/.zshrc, etc.):

export PANKOBLITZ_TOKEN="your-token-here"

Then run source ~/.bashrc or restart your terminal.

2

Add to your .mcp.json

Create or update .mcp.json in your project root:

{
  "mcpServers": {
    "pankoblitz": {
      "type": "http",
      "url": "http://localhost:8084/mcp",
      "headers": {
        "Authorization": "Bearer ${PANKOBLITZ_TOKEN}"
      }
    }
  }
}

The $${PANKOBLITZ_TOKEN} will be replaced with your environment variable.

3

Restart Claude Code

Claude Code reads MCP config on startup. Use /mcp to verify the server is connected.

Usage Example

Once configured, you can use Claude Code to interact with Pankoblitz:

Example prompts:

  • "List all my sites in Pankoblitz"
  • "Create a new landing page for my SaaS product"
  • "Update the hero section of my site"
  • "Publish my landing page"

Available MCP Tools

ListSites GET

List all sites in your organization

CreateSite POST

Create a new landing page

UpdateSite POST

Update site content and settings

PublishSite POST

Make a site publicly accessible

DeleteSite DELETE

Permanently delete a site