Skip to content

Setup en

Daisuke Tsukada edited this page Mar 19, 2026 · 1 revision

Setup Guide

MaxRefMCP uses the Streamable HTTP transport of MCP (Model Context Protocol). Any AI client that supports MCP can connect to it.

Server URL: https://maxrefmcp-production.up.railway.app/mcp


Claude Code (CLI)

Run the following command in your project directory:

claude mcp add --transport http --scope project max-ref "https://maxrefmcp-production.up.railway.app/mcp"

Scope Options

Scope Description
--scope project Available only in the current project (saved to .mcp.json)
--scope user Available across all projects (saved to ~/.claude.json)
--scope local Local only (default)

Verify the Connection

claude mcp list

If max-ref shows as connected, the setup is complete.


Claude Desktop

Add the following to your configuration file claude_desktop_config.json:

File Location

OS Path
macOS ~/Library/Application Support/Claude/claude_desktop_config.json
Windows %APPDATA%\Claude\claude_desktop_config.json

Configuration

{
  "mcpServers": {
    "max-ref": {
      "type": "streamable-http",
      "url": "https://maxrefmcp-production.up.railway.app/mcp"
    }
  }
}

After saving, restart Claude Desktop.


.mcp.json (Shared Project Configuration)

To share the configuration across a team or repository, place a .mcp.json file in the project root:

{
  "mcpServers": {
    "max-ref": {
      "type": "http",
      "url": "https://maxrefmcp-production.up.railway.app/mcp"
    }
  }
}

Note: In Claude Code CLI, specify type as "http" (it is internally handled as Streamable HTTP).


Other MCP-Compatible Clients

Any AI client that supports the MCP Streamable HTTP transport can connect using the following information:

Item Value
Endpoint URL https://maxrefmcp-production.up.railway.app/mcp
Transport Streamable HTTP
Protocol Version 2024-11-05
Authentication Not required (public API)

General Configuration Example

{
  "name": "max-ref",
  "transport": "streamable-http",
  "url": "https://maxrefmcp-production.up.railway.app/mcp"
}

Refer to your client's documentation for client-specific setup instructions.


Troubleshooting

Connection Failures

  1. Check the transport type: Use http or streamable-http, not sse
  2. Check the URL: Make sure it ends with /mcp
  3. Check your network: Visit https://maxrefmcp-production.up.railway.app/ in a browser and verify that the dashboard loads

Tools Not Being Invoked

  • Verify that the MCP server connection status is connected
  • When you ask the AI a question about Max/MSP, the appropriate tool will be selected automatically

Clone this wiki locally