smithery.ai

blazemeter-api-reference

Comprehensive reference for BlazeMeter REST APIs, including authentication, identifiers, and API endpoints.

First seen Apr 9, 2026

Installation

$ npx skills add https://smithery.ai

Summary

  • Comprehensive reference for BlazeMeter REST APIs, including authentication, identifiers, and API endpoints.
  • Use when working with BlazeMeter APIs for (1) Understanding BlazeMeter REST API structure, (2) Authenticating API requests, (3) Obtaining identifiers (Workspace ID, Project ID, Test ID, etc.), (4) Using Test Data API, (5) Using Cloning API, (6) Using Export API, (7) Using Service Virtualization Bulk Operations APIs, or any other API tasks.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,088 B
  • docs SUMMARY.md 481 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

BlazeMeter API Reference

Comprehensive reference for BlazeMeter REST APIs.

Overview

BlazeMeter provides REST APIs for automating test execution, managing resources, and integrating with external systems. This skill covers API authentication, identifiers, and all available API endpoints.

Quick Start

  1. Overview: Understand BlazeMeter REST API structure
  2. Authentication: Configure API key authentication
  3. Identifiers: Obtain Workspace ID, Project ID, Test ID, and other identifiers
  4. APIs: Use Test Data API, Cloning API, Export API, and Bulk Operations APIs

MCP Tools Integration

BlazeMeter MCP tools provide programmatic access to BlazeMeter, complementing the REST APIs. The MCP tools offer a higher-level interface for common operations:

Available MCP Tools

  • User Management:

- blazemeteruser with action readuser - Read current user information - Returns: User details including default account, workspace, and project

  • Account Management:

- blazemeteraccount with action read - Read account information - blazemeteraccount with action list - List all accounts - Required args: account_id (integer) for read action

  • Workspace Management:

- blazemeterworkspaces with action read - Read workspace details - blazemeterworkspaces with action list - List all workspaces - blazemeterworkspaces with action readlocations - Get location lists - Required args: workspaceid (integer) for read action, accountid (integer) for list action

  • Project Management:

- blazemeterproject with action read - Read project information - blazemeterproject with action list - List all projects - Required args: projectid (integer) for read action, workspaceid (integer) for list action

  • Test Management:

- blazemetertests with action read - Read test details - blazemetertests with action list - List all tests - blazemetertests with action create - Create new tests - blazemetertests with action configureload - Configure load settings - blazemetertests with action configurelocations - Configure location distribution - blazemetertests with action uploadassets - Upload test assets - Required args: testid (integer) or project_id (integer)

  • Execution Management:

- blazemeterexecution with action start - Start test execution - blazemeterexecution with action read - Read execution details - blazemeterexecution with action list - List all executions - blazemeterexecution with action readsummary - Get summary report - blazemeterexecution with action readerrors - Get error report - blazemeterexecution with action readrequeststats - Get request statistics - blazemeterexecution with action readallreports - Get all reports - Required args: testid (integer) or execution_id (integer)

  • Help System:

- blazemeterhelp with action listhelpcategories - List help categories - blazemeterhelp with action listhelpcategorycontent - List help content - blazemeterhelp with action readhelpinfo - Read help information - Required args: Varies by action

When to Use MCP Tools vs REST APIs

  • MCP Tools: Use for high-level operations, automation workflows, and AI agent interactions
  • REST APIs: Use for direct API access, custom integrations, and fine-grained control

Example Workflow

Using MCP Tools for API-like Operations:

  1. Use blazemeteruser with action readuser to get default workspace and project IDs
  2. Use blazemeter_tests with action list to find tests (equivalent to GET /tests API)
  3. Use blazemeter_execution with action start to execute tests (equivalent to POST /tests/{testId}/start API)
  4. Use blazemeterexecution with action readsummary to get results (equivalent to GET /executions/{executionId}/summary API)

Reference Files

Overview

  • [overview.md](skill-blazemeter-api-reference://references/overview.md): BlazeMeter REST APIs, API Overview

Authentication

  • [authentication.md](skill-blazemeter-api-reference://references/authentication.md): Authorization, API Keys

Identifiers

  • [identifiers.md](skill-blazemeter-api-reference://references/identifiers.md): Get Your Workspace ID, Get the Project ID, Get the Test or Collection ID, Get the Scenario ID, Get the Master ID, Get the Session ID, Get the Location Name

Test Data API

  • [test-data-api.md](skill-blazemeter-api-reference://references/test-data-api.md): Test Data API

Cloning API

  • [cloning-api.md](skill-blazemeter-api-reference://references/cloning-api.md): Cloning API

Export API

  • [export-api.md](skill-blazemeter-api-reference://references/export-api.md): Export API

Bulk Operations

  • [bulk-operations.md](skill-blazemeter-api-reference://references/bulk-operations.md): Service Virtualization Bulk Operations APIs

When to Use Each Reference

  • Overview: When understanding BlazeMeter REST API structure and endpoints
  • Authentication: When configuring API key authentication or authorization
  • Identifiers: When obtaining Workspace ID, Project ID, Test ID, or other identifiers for API calls
  • Test Data API: When using Test Data API for generating and managing test data
  • Cloning API: When cloning services using the Cloning API
  • Export API: When exporting services using the Export API
  • Bulk Operations: When performing bulk operations on Service Virtualization