Skip to main content
ClaudeWave

Loadster MCP

MCP ServersRegistry oficial0 estrellas0 forksMITActualizado today
ClaudeWave Trust Score
82/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Documented (README)
Last scanned: 9/9/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/loadster/loadster-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "loadster-mcp": {
      "command": "node",
      "args": ["/path/to/loadster-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/loadster/loadster-mcp and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# Loadster MCP

[Loadster](https://loadster.com) is a cloud load testing and monitoring platform. Its built-in
[Model Context Protocol](https://modelcontextprotocol.io/) (MCP) server lets AI agents like Claude, ChatGPT, Codex,
Cursor, and VS Code write and play load test scripts, build load test scenarios, set up monitors, and analyze
results in your Loadster account.

This repository is the public home for connecting to that server: setup snippets for each client, the Claude Code
plugin, and the metadata behind Loadster's listings in MCP directories. The server itself is hosted by Loadster at
`https://api.loadster.com/mcp`, and its source is not published here.

The maintained, full-length guide is the [AI Agents chapter of the Loadster manual](https://loadster.com/manual/ai-agents/).
This README is the short version.

## The Loadster MCP endpoint

| | |
| --- | --- |
| URL | `https://api.loadster.com/mcp` |
| Transport | Streamable HTTP |
| Authentication | OAuth 2.1 (preferred), or an MCP token in an `Authorization: Bearer` header |
| Registry name | `com.loadster/loadster-mcp` |

**OAuth** is the easiest way to connect. Clients that support MCP OAuth send you to Loadster to approve the
connection in your browser, and you can review or revoke connected agents on the **AI Agents** page in your Loadster
settings.

**MCP tokens** are for clients that can't do OAuth, and for CI jobs and scripted agents. Create one in the Loadster
dashboard under **Settings → AI Agents → MCP Tokens**, copy it right away (it's only shown once), and send it as
`Authorization: Bearer YOUR_TOKEN`. A token acts as you within the team where you created it, so treat it like a
password.

## Connecting Claude Code to Loadster

The quickest way is the plugin from this repository, which adds the Loadster MCP server plus a few skills that
encode a sensible load testing workflow:

```
/plugin marketplace add loadster/loadster-mcp
/plugin install loadster@loadster
```

Then run `/mcp`, pick **loadster**, and approve the OAuth connection in your browser. Ask Claude something like
_"List my Loadster projects"_ to confirm it can reach your account.

Without the plugin, add the server directly and Claude Code will walk you through OAuth:

```bash
claude mcp add --transport http loadster https://api.loadster.com/mcp
```

Or with an MCP token, for headless use:

```bash
claude mcp add --transport http loadster https://api.loadster.com/mcp --header "Authorization: Bearer YOUR_TOKEN"
```

The equivalent project-level `.mcp.json`:

```json
{
  "mcpServers": {
    "loadster": {
      "type": "http",
      "url": "https://api.loadster.com/mcp"
    }
  }
}
```

## Connecting Claude Desktop and claude.ai to Loadster

Claude Desktop and claude.ai connect to remote MCP servers as custom connectors, which use OAuth.

1. Open **Settings → Connectors** and choose **Add custom connector**.
2. Enter a name and the URL `https://api.loadster.com/mcp`.
3. Choose **Connect** and approve the Loadster OAuth connection when your browser opens.
4. In a conversation, open the tools menu and turn on the Loadster connector.

## Connecting ChatGPT and Codex to Loadster

ChatGPT on the web connects through plugins created in **Developer mode** (**Settings → Security and login**).
Open **Plugins**, add a connection with the URL `https://api.loadster.com/mcp`, then add it to a new conversation
from the tools menu and approve the OAuth connection.

Codex in the ChatGPT desktop app, the Codex CLI, and the Codex IDE extension share one configuration:

```bash
codex mcp add loadster --url https://api.loadster.com/mcp
codex mcp login loadster
```

Or with an MCP token in `~/.codex/config.toml`:

```toml
[mcp_servers.loadster]
url = "https://api.loadster.com/mcp"
bearer_token_env_var = "LOADSTER_MCP_TOKEN"
```

## Connecting Cursor to Loadster

[![Install in Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](cursor://anysphere.cursor-deeplink/mcp/install?name=loadster&config=eyJ1cmwiOiJodHRwczovL2FwaS5sb2Fkc3Rlci5jb20vbWNwIn0=)

Or add it to `.cursor/mcp.json` in your project (or `~/.cursor/mcp.json` for all projects) and approve the OAuth
connection when Cursor first connects:

```json
{
  "mcpServers": {
    "loadster": {
      "url": "https://api.loadster.com/mcp"
    }
  }
}
```

To use an MCP token instead, add `"headers": { "Authorization": "Bearer ${env:LOADSTER_MCP_TOKEN}" }` and set
`LOADSTER_MCP_TOKEN` in the environment before starting Cursor.

## Connecting VS Code to Loadster

[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Loadster_MCP-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect/mcp/install?name=loadster&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fapi.loadster.com%2Fmcp%22%7D)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install_Loadster_MCP-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=loadster&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fapi.loadster.com%2Fmcp%22%7D)

Or run **MCP: Add Server** from the Command Palette, or add it to `.vscode/mcp.json`:

```json
{
  "servers": {
    "loadster": {
      "type": "http",
      "url": "https://api.loadster.com/mcp"
    }
  }
}
```

To use an MCP token, declare a `promptString` input with `"password": true` and reference it in an
`Authorization` header. The [manual](https://loadster.com/manual/ai-agents/#connecting-vs-code-to-loadster) has the
complete example.

## Connecting other MCP clients to Loadster

Any client that supports remote servers over Streamable HTTP can connect the same way. For clients that only
support local (stdio) servers, the [mcp-remote](https://www.npmjs.com/package/mcp-remote) bridge usually works.
Leave out the `--header` arguments to have it run the OAuth flow instead of using a token:

```json
{
  "mcpServers": {
    "loadster": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://api.loadster.com/mcp", "--header", "Authorization: Bearer YOUR_TOKEN"]
    }
  }
}
```

## What an agent can do with Loadster

The server exposes most of the Loadster dashboard. Clients fetch the live tool list when they connect, so this table
is a map of the surface rather than the source of truth.

| Group | Tools |
| --- | --- |
| Projects and documentation | `list_projects`, `get_documentation`, `get_scripting_api`, `get_example`, `list_command_types`, `get_command_schema`, `get_variable_schema` |
| Scripts | `list_scripts`, `get_script`, `create_script`, `update_script`, `duplicate_script`, `delete_script`, `import_script`, `validate_script`, `play_script`, `get_play_status`, `stop_script`, `get_step_detail`, `get_screenshot`, `list_script_revisions`, `get_script_revision`, `restore_script_revision`, `list_script_assets`, `get_script_asset`, `put_script_asset`, `delete_script_asset` |
| Datasets | `list_datasets`, `get_dataset`, `create_dataset`, `update_dataset`, `append_dataset_rows`, `delete_dataset` |
| Scenarios and engines | `list_scenarios`, `get_scenario`, `create_scenario`, `update_scenario`, `delete_scenario`, `list_engines` |
| Load test reports | `list_load_tests`, `get_load_test_report`, `update_load_test_notes` |
| Monitoring | `list_monitoring_locations`, `list_monitors`, `get_monitor`, `create_monitor`, `update_monitor`, `disable_monitor`, `delete_monitor`, `list_monitor_cycles`, `get_monitor_cycle_detail`, `get_monitoring_summary`, `list_incidents`, `get_incident` |
| Feedback | `submit_feedback` |

Some actions are intentionally left to humans. An agent cannot launch or stop a full load test, enable a monitor,
manage notification policies or maintenance windows, or administer your team, billing, or Fuel. It gets everything
ready and hands off so you push the launch button.

Every tool carries MCP annotations (`readOnlyHint`, `destructiveHint`, `idempotentHint`, `openWorldHint`), so
clients that honor them can prompt before writes and deletes.

## Safety practices for AI load testing

- **The agent acts in your account.** It edits the same scripts, scenarios, datasets, and monitors your team sees.
  Script changes create revisions you can restore, but it's still a good idea to review proposed changes and keep
  experiments in their own project.
- **Only test what's yours.** Point scripts only at systems you own or are authorized to test. Playing a script runs
  a single bot, but it's your responsibility either way.
- **Scope your access.** Use one token per agent or machine, name them clearly, and revoke any you no longer use.
  Review OAuth connections on the AI Agents page.

## Support

- Setup help and questions: [help@loadster.com](mailto:help@loadster.com)
- Security issues: see [SECURITY.md](SECURITY.md)
- Problems with the contents of this repository (the README, plugin, or directory metadata): open an issue here

## What's in this repository

| Path | Purpose |
| --- | --- |
| `server.json` | Loadster's entry in the [official MCP Registry](https://registry.modelcontextprotocol.io/) |
| `glama.json` | Maintainer metadata for the [Glama](https://glama.ai/mcp/servers) listing |
| `.claude-plugin/`, `.mcp.json`, `skills/` | The Claude Code plugin and its marketplace manifest |
| `.github/workflows/` | Validation on every push, and registry publishing on release |

## License

The contents of this repository are released under the [MIT License](LICENSE). The Loadster service itself is
governed by [Loadster's terms of service](https://loadster.com/legal/terms-of-service/).

Lo que la gente pregunta sobre loadster-mcp

¿Qué es loadster/loadster-mcp?

+

loadster/loadster-mcp es mcp servers para el ecosistema de Claude AI. Loadster MCP Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-09.

¿Cómo se instala loadster-mcp?

+

Puedes instalar loadster-mcp clonando el repositorio (https://github.com/loadster/loadster-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar loadster/loadster-mcp?

+

Nuestro agente de seguridad ha analizado loadster/loadster-mcp y le ha asignado un Trust Score de 82/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene loadster/loadster-mcp?

+

loadster/loadster-mcp es mantenido por loadster. La última actividad registrada en GitHub es del 2026-09-09, con 0 issues abiertos.

¿Hay alternativas a loadster-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega loadster-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: loadster/loadster-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/loadster-loadster-mcp)](https://claudewave.com/repo/loadster-loadster-mcp)
<a href="https://claudewave.com/repo/loadster-loadster-mcp"><img src="https://claudewave.com/api/badge/loadster-loadster-mcp" alt="Featured on ClaudeWave: loadster/loadster-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a loadster-mcp