Install

Claude Code

Connect the Claude Code CLI to your plnnrly organisation.

Claude Code is Anthropic's CLI / terminal coding agent. It supports MCP servers configured per project or globally.

Prerequisites

  • Claude Code installed (npm install -g @anthropic-ai/claude-code or via the Anthropic installer).
  • Your plnnrly URL and an MCP token from the AI slide-over — see Get a token.

Configure

The fastest way is the claude mcp add command:

claude mcp add --transport http plnnrly https://<your-url>/mcp/v1 \
  --header "Authorization: Bearer <token>"

Alternatively, edit .mcp.json at the root of your project:

{
  "mcpServers": {
    "plnnrly": {
      "type": "http",
      "url": "https://<your-url>/mcp/v1",
      "headers": {
        "Authorization": "Bearer <token>"
      }
    }
  }
}

Verify

Run claude mcp list and confirm plnnrly is listed. Inside a claude session, the tools become available with the mcp__plnnrly__* prefix.

On this page