This MCP (Model Context Protocol) server provides AIs with tools to interact with your OpsLevel account. Currently, the MCP server only uses read-only access to your OpsLevel account and can read data from the following resources: - Campaigns - Components - Component Dependencies (components that a component depends on) - Component Dependents (components that depend on a component) - Documentation
Add this skill
npx mdskills install opslevel/opslevel-mcpComprehensive MCP server with excellent multi-platform setup docs and read-only access to OpsLevel resources








This MCP (Model Context Protocol) server provides AIs with tools to interact with your OpsLevel account.
Currently, the MCP server only uses read-only access to your OpsLevel account and can read data from the following resources:
brew install opslevel/tap/opslevel-mcpdocker pull public.ecr.aws/opslevel/mcp:latest${HOME}/Library/Application\ Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"opslevel": {
"command": "opslevel-mcp",
"env": {
"OPSLEVEL_API_TOKEN": "XXXXXXX"
}
}
}
}
${HOME}/Library/Application\\ Support/Code/User/settings.json{
"chat.agent.enabled": true,
"chat.mcp.discovery.enabled": true,
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "opslevel_token",
"description": "OpsLevel API Token",
"password": true
}
],
"servers": {
"opslevel": {
"type": "stdio",
"command": "opslevel-mcp",
"env": {
"OPSLEVEL_API_TOKEN": "${input:opslevel_token}"
}
}
}
}
}
{
"mcpServers": {
"opslevel": {
"command": "opslevel-mcp",
"env": {
"OPSLEVEL_API_TOKEN": "XXXXXX"
}
}
}
}
{
"opslevel": {
"command": "opslevel-mcp",
"args": [],
"env": {
"OPSLEVEL_API_TOKEN": "XXXXXX"
},
"start_on_launch": true
}
}
{
"mcpServers": {
"opslevel": {
"command": "opslevel-mcp",
"env": {
"OPSLEVEL_API_TOKEN": "XXXXXX"
}
}
}
}
If you didn't install the binary directly and instead pulled the docker image you'll need to adjust the above MCP configurations to support running the server via docker
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"OPSLEVEL_API_TOKEN",
"public.ecr.aws/opslevel/mcp:latest"
],
Install via CLI
npx mdskills install opslevel/opslevel-mcpOpsLevel MCP Server is a free, open-source AI agent skill. This MCP (Model Context Protocol) server provides AIs with tools to interact with your OpsLevel account. Currently, the MCP server only uses read-only access to your OpsLevel account and can read data from the following resources: - Campaigns - Components - Component Dependencies (components that a component depends on) - Component Dependents (components that depend on a component) - Documentation
Install OpsLevel MCP Server with a single command:
npx mdskills install opslevel/opslevel-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
OpsLevel MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.