Steadybit
Interact with the Steadybit platform to run chaos engineering experiments.
Steadybit MCP Server
MCP Server for Steadybit, enabling LLM tools like Claude to interact with the Steadybit platform.
Tools
list-experiment-designs- List experiment designs
- Required inputs:
team(string): The team key to list experiment designs for
- Returns: List of experiment designs with their key and name
get_experiment_design- Get an experiment design
- Required inputs:
experimentKey(string): The experiment key to get
- Returns: The experiment design
list_experiment_executions- List experiment executions
- Optional inputs:
experiment(list of string): Filter by one or more experiment keysenvironment(list of string): Filter by one or more environment namesteam(list of string): Filter by one or more team keysstate(list of string): Filter by one or more result states, possible values are [CREATED, PREPARED, RUNNING, FAILED, CANCELED, COMPLETED, ERRORED]from(string, ISO8601 date): Filter by creation date fromto(string, ISO8601 date): Filter by creation date topage(number): Number of the requested page, default is 0pageSize(number): Results per page, defaults to 50, maximum 100 is allowed
- Returns: The experiment design
get_experiment_execution- Get an experiment execution
- Required inputs:
executionId(number): The execution id to get
- Returns: The experiment execution
list_actions- List of currently registered actions
- Optional inputs:
page(number): Number of the requested page, default is 0pageSize(number): Results per page, defaults to 50, maximum 100 is allowed
- Returns: List of actions
list_environments- Get a list of environments
- Returns: List of environments
list_teams- Get a list of teams
- Returns: List of teams
list_experiment_schedules- Get a list of experiment schedules
- Optional inputs:
experiment(list of string): Filter by one or more experiment keysteam(list of string): Filter by one or more team keys
- Returns: List of experiment schedules
list_experiment_templates- Get a list of experiment templates (name and ids)
get_experiment_template- Get an experiment template including its design
- Required inputs:
templateId(string): The id of the template to create an experiment from
create_experiment_from_template- Create an experiment from a template
- Needs to be enabled via environment variable, for example
CAPABILITIES_ENABLED_0=CREATE_EXPERIMENT_FROM_TEMPLATE - Required inputs:
templateId(string): The id of the template to create an experiment fromenvironment(string): The environment to use for the experimentteam(string): The team to use for the experiment
- Optional inputs:
placeholders(object): A map of placeholder keys and their values.externalId(string): An optional external id that can be used to update existing experiment designs.
- Returns: The key of the created experiment or an error message if the experiment could not be created
Setup
You need to have a Steadybit account and an API token. You can create an API token in the Steadybit platform under
"Settings" → "API Access Tokens". Both token types, Admin or Team are supported.
If you want to create experiments, you need a team token for the team you want to create experiments in.
Supported ENV-Variables
API_TOKEN: The API token to use for authentication. This is required.API_URL: The URL of the Steadybit API. Default ishttps://platform.steadybit.com/api.CAPABILITIES_ENABLED_0,CAPABILITIES_ENABLED_1,...: A comma-separated list of additional capabilities to enable. The capabilities are:CREATE_EXPERIMENT_FROM_TEMPLATE: Enables thecreate_experiment_from_templatetool.
Usage with Claude Desktop
- Settings -> Developer -> Edit
- Add the following JSON to the file, make sure to replace
<your-api-token>with your actual API token.:{ "mcpServers": { "steadybit": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "API_TOKEN", "ghcr.io/steadybit/mcp:latest" ], "env": { "API_TOKEN": "<your-api-token>" } } } }
Development
Please note that there will be no logging to the console when running the MCP Server. The server uses STDIO transport
to communicate with the MCP Clients. Have a look at the steadybit-mcp.log file to see the output of the server.
Local Testing
-
Build the project:
mvn clean install -
Test with the MCP inspector:
- Launch the inspector:
npx @modelcontextprotocol/inspector java -jar target/mcp-1.0.0-SNAPSHOT.jara -e API_URL=https://platform.steadybit.com/api -e API_TOKEN=123456 - Logs can be found in
steadybit-mcp.loglocated in the folder where you started the inspector.
- Launch the inspector:
-
Use in Claude Desktop
- Settings -> Developer -> Edit
- Add something like below.
{ "mcpServers": { "steadybit": { "command": "/Users/danielreuter/.sdkman/candidates/java/current/bin/java", "args": [ "-jar", "/Users/danielreuter/.m2/repository/com/steadybit/mcp/1.0.0-SNAPSHOT/mcp-1.0.0-SNAPSHOT.jar" ], "env": { "API_URL": "https://platform.steadybit.com/api", "API_TOKEN": "123456", "LOGGING_FILE_NAME": "/Users/danielreuter/Library/Logs/Claude/steadybit-mcp-server.log" } } } }- MCP-Client-Logs can be found in
~/Library/Logs/Claude/mcp-server-steadybit.log - MCP-Server-Logs can be found in
~/Library/Logs/Claude/steadybit-mcp.log, depending on theLOGGING_FILE_NAMEyou set in theenvsection.
Building and testing the Docker image
-
Build the image:
docker build -t steadybit/mcp -f Dockerfile . -
Create a file
config.jsonwith the following content:{ "mcpServers": { "steadybit": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "API_TOKEN", "-e", "API_URL", "steadybit/mcp" ], "env": { "API_TOKEN": "123456", "API_URL":"https://platform.steadybit.com/api" } } } } -
Run the inspector:
npx @modelcontextprotocol/inspector --config config.json --server steadybit
Building a native image
-
Install GraalVM 24.0.1 with the following command using sdkman:
sdk install java 24.0.1-graalce -
Use the GraalVM version:
sdk use java 24.0.1-graalce -
Build the native image:
mvn -Pnative native:compile
Example Usage
You can find some example prompts here.
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
相關伺服器
Alpha Vantage MCP Server
贊助Access financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Micronaut Fun
It exposes Micronaut framework documentation and guides as MCP resources, it offers tools to search the docs and prompts to help you write tests and perform tasks in an idiomatic way
Jetty.io
Work on dataset metadata with MLCommons Croissant validation and creation.
RepoRecall
Zero-tool-call codebase intelligence for Claude Code and MCP clients. Automatically injects the right code context, functions, callers, and call chains, before the LLM starts thinking. Replaces 4-6 grep/read round-trips with a single 5ms hook injection, cutting token usage by 3-8x.
Sequa MCP
A proxy that connects local STDIO with remote MCP servers, enabling IDEs to use MCP without extra infrastructure.
npm Registry MCP
Search packages, check versions, audit vulnerabilities and compare libraries directly from the npm registry (no API key required)
IIIF Images Server
A server for working with IIIF (International Image Interoperability Framework) manifests and images.
AI Agent Playwright
An AI agent for the Playwright MCP server, enabling automated web testing and interaction.
MCP Tool Kit
A modular server for building AI agents with a unified interface for tools like file operations, web search, browser automation, and financial data.
UnrealMCP Plugin
An unofficial MCP server plugin for remote control of Unreal Engine using AI tools.
MCP Project Setup
A starter project with setup instructions and example MCP servers, including a weather server.