📦 Installation
Add mcp-trakt to Claude Code, Claude Desktop, Cursor, Windsurf, or VSCode.
Run npx @kud/mcp-trakt@latest setup first — this saves your credentials to the
macOS Keychain so no tokens are needed in any config file. See
Authentication for the full flow.
💻 Claude Code CLI
claude mcp add trakt npx -- -y @kud/mcp-trakt@latest🍎 Claude Desktop — macOS
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"Trakt": {
"command": "npx",
"args": ["-y", "@kud/mcp-trakt@latest"]
}
}
}Restart Claude Desktop after saving.
🪟 Claude Desktop — Windows
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"Trakt": {
"command": "npx",
"args": ["-y", "@kud/mcp-trakt@latest"]
}
}
}▶️ Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"Trakt": {
"command": "npx",
"args": ["-y", "@kud/mcp-trakt@latest"]
}
}
}🏄 Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"Trakt": {
"command": "npx",
"args": ["-y", "@kud/mcp-trakt@latest"]
}
}
}🧩 VSCode
Add to .vscode/mcp.json:
{
"servers": {
"Trakt": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@kud/mcp-trakt@latest"]
}
}
}