Skill v1.0.2
currentAutomated scan100/1002 files
version: "1.0.2" name: installing-and-activating-codescene-mcp description: Use when installing the CodeScene MCP Server binary or package, registering it in an AI assistant, or copying agent guidance files into a repository.
Installing and Activating CodeScene MCP
Overview
Use this skill when the task is to get the CodeScene MCP Server installed and registered with an AI assistant. The workflow has three parts: install the server, register it in the assistant, and copy the agent guidance files into the repository.
For configuring the server after installation (access tokens, on-prem URLs, default project, SSL), use the configuring-codescene-mcp skill instead.
When to Use
- The user wants to install CodeScene MCP for the first time.
- The user has the binary or package installed but has not registered it in an AI assistant.
- The user wants a quick setup path for VS Code, GitHub Copilot, Claude Code, Docker, Homebrew, or Windows.
Do not use this skill for configuring tokens, URLs, or other server options. Use configuring-codescene-mcp for that. Do not use this skill for refactoring, safeguards, or technical debt prioritization.
Quick Reference
- Install using the method that matches the environment:
npxornpm, Homebrew, Windows installer script, manual download, or Docker. - Register the server in the AI assistant so it launches
cs-mcp. - Copy the appropriate agent guidance file into the repository:
docs/AGENTS-full.mdfor CodeScene Core users, ordocs/AGENTS-standalone.mdfor standalone license users. For Amazon Q, copy.amazonq/rulesinstead. - Copy any relevant skills from the CodeScene MCP skills catalogue at
https://github.com/codescene-oss/codescene-mcp-server/tree/main/skills. - After installation, use
set_configor ask the assistant to configure the access token and any other options.
Implementation
- Choose the installation method that fits the user environment:
npx @codescene/codehealth-mcpornpm install -g @codescene/codehealth-mcpbrew tap codescene-oss/codescene-mcp-server https://github.com/codescene-oss/codescene-mcp-server && brew trust codescene-oss/codescene-mcp-server && brew install cs-mcp- Windows PowerShell installer
- Manual binary download
- Docker image
- Verify that the
cs-mcpcommand or container entrypoint is available. - Register the server in the AI assistant:
- For VS Code or GitHub Copilot, add a
codesceneserver entry insettings.jsonor.vscode/mcp.json. - For Claude Code, add the MCP with
claude mcp add.
- Configure the server by asking the assistant to set the access token (this uses the
set_configtool under the hood). See theconfiguring-codescene-mcpskill for full details. - Copy the appropriate agent guidance file to the repository:
docs/AGENTS-full.mdfor CodeScene Core users, ordocs/AGENTS-standalone.mdfor standalone license users. Rename it toAGENTS.mdin the target repository so the agent picks it up automatically. - If the user is on Amazon Q, copy
.amazonq/rulesinstead of the AGENTS file. - Copy any relevant skills from
https://github.com/codescene-oss/codescene-mcp-server/tree/main/skillsfor safeguarding, refactoring, prioritization, or business-case workflows.
Common Mistakes
- Installing the server but never registering it with the assistant.
- Copying the setup files into the wrong repository.
- Skipping the configuration step after installation. The server needs at least an access token to function.
- Manually editing environment variables when
set_configis simpler and persistent.