Skip to content

Claude Code Setup

Step 1: Verify Claude Code Installation

Confirm the claude command is available:

bash
claude --version

If not installed, visit the Claude Code official site.

Step 2: Get Your Access Token

Contact your server administrator with your username to have an access token issued.

WARNING

The token is displayed only once at the time of issuance. Store it somewhere safe immediately.

Step 3: Register the MCP Server

Run the command below. Replace <server-address> and <access-token> with your actual values.

bash
claude mcp add --transport http \
  --header "Authorization: Bearer <access-token>" \
  psm <server-address>

Verify the registration:

bash
claude mcp list

If psm appears in the list, you're all set.

Verify It Works

Start Claude Code and try the following:

Generate a TypeScript code review checklist

If you receive a response from the MCP server, the connection is working.

Next Steps

MIT License