
OpsLevel MCP
OpsLevel MCP
README
<p align="center"> <a href="https://github.com/OpsLevel/opslevel-mcp/blob/main/LICENSE"> <img src="https://img.shields.io/github/license/OpsLevel/opslevel-mcp.svg" alt="License" /></a> <a href="https://GitHub.com/OpsLevel/opslevel-mcp/releases/"> <img src="https://img.shields.io/github/v/release/OpsLevel/opslevel-mcp" alt="Release" /></a> <a href="https://masterminds.github.io/stability/experimental.html"> <img src="https://masterminds.github.io/stability/experimental.svg" alt="Stability: Experimental" /></a> <a href="https://github.com/OpsLevel/opslevel-mcp/graphs/contributors"> <img src="https://img.shields.io/github/contributors/OpsLevel/opslevel-mcp" alt="Contributors" /></a> <a href="https://github.com/OpsLevel/opslevel-mcp/pulse"> <img src="https://img.shields.io/github/commit-activity/m/OpsLevel/opslevel-mcp" alt="Activity" /></a> <a href="https://github.com/OpsLevel/opslevel-mcp/releases"> <img src="https://img.shields.io/github/downloads/OpsLevel/opslevel-mcp/total" alt="Downloads" /></a> <a href="https://app.opslevel.com/services/opslevel_mcp/maturity-report"> <img src="https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fapp.opslevel.com%2Fapi%2Fservice_level%2Fdlmj6PlFjehv6iLE6IQtEGXi_uz3LF9rA5nxb35wiY8" alt="Overall" /></a> </p>
OpsLevel MCP Server
This MCP (Model Context Protocol) server provides AIs with tools to interact with your OpsLevel account.
Features
Currently, the MCP server only uses read-only access to your OpsLevel account and can read data from the following resources:
- Actions
- Components
- Documentation (API & Tech Docs)
- Domains
- Filters
- Infrastructure
- Repositories
- Systems
- Teams
- Users
Setup
- Install the MCP Server
- Homebrew -
brew install opslevel/tap/opslevel-mcp
- Docker -
docker pull public.ecr.aws/opslevel/mcp:latest
You can also used a pinned version check out the gallery for the available tags - Manual - Visit our GitHub releases page and download the binary for your operating system.
- Homebrew -
- You will need an API Token to authorize the MCP Server to talk to your account via an environment variable.
- Setup MCP configuration for the AI tool of your choice.
Claude
- Edit the file at the specified path based on the Claude Desktop docs
- Mac OS -
${HOME}/Library/Application\ Support/Claude/claude_desktop_config.json
- Windows -
%APPDATA%\Claude\claude_desktop_config.json
- Mac OS -
- Start (or restart) Claude Desktop
{
"mcpServers": {
"opslevel": {
"command": "opslevel-mcp",
"env": {
"OPSLEVEL_API_TOKEN": "XXXXXXX"
}
}
}
}
VS Code
- Open the Settings menu (Command + Comma) and select the correct tab atop the page for your use case
- Workspace - configures the server in the context of your workspace
- User - configures the server in the context of your user
- Select Features → Chat
- Ensure that "Mcp" is Enabled
- You may need to have your Github administrator enable "preview" features in the CoPilot settings for the organization.
- Click "Edit in settings.json" under "Mcp > Discovery" to have the below config
- Can also edit the file directly
- (Mac OS)
${HOME}/Library/Application\\ Support/Code/User/settings.json
- (Mac OS)
- Can also edit the file directly
- Start (or restart) VS Code
{
"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}"
}
}
}
}
}
Cursor
- Open the Cursor menu and select Settings → Cursor Settings → MCP
- Click "Add new global MCP server"
- Add the config below
{
"mcpServers": {
"opslevel": {
"command": "opslevel-mcp",
"env": {
"OPSLEVEL_API_TOKEN": "XXXXXX"
}
}
}
}
Docker
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"
],
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.