MCP server for managing Apidog test cases, scenarios, suites, and test data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"apidog-tests": {
"env": {
"APIDOG_BRANCH_ID": "your-branch-id",
"APIDOG_PROJECT_ID": "your-project-id",
"APIDOG_ACCESS_TOKEN": "your-token"
},
"args": [
"@acabala/apidog-tests-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for managing Apidog test cases, scenarios, suites, and test data. Gives AI assistants full read/write access to Apidog's test management features.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@acabala/apidog-tests-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @acabala/apidog-tests-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Apidog Tests MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for managing Apidog test cases, scenarios, suites, and test data. Gives AI assistants full read/write access to Apidog's test management features.
This project is not an official Apidog integration.
docs/PRACTICAL-USAGE.md -- proven patterns for creating stable test cases/scenarios/suitesSECURITY.md -- vulnerability reporting and secure usage guidelinesCONTRIBUTING.md -- contribution workflowCHANGELOG.md -- release notesnpm install -g @acabala/apidog-tests-mcp
Or use directly with npx:
npx @acabala/apidog-tests-mcp
The server requires these environment variables:
| Variable | Required | Description |
|---|---|---|
APIDOG_ACCESS_TOKEN | Yes | Your Apidog access token |
APIDOG_PROJECT_ID | Yes | The Apidog project ID |
APIDOG_BRANCH_ID | Yes | The branch ID to work with |
APIDOG_BASE_URL | No | Override the API base URL (default: https://api.apidog.com/api/v1) |
Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"apidog-tests": {
"command": "npx",
"args": ["@acabala/apidog-tests-mcp"],
"env": {
"APIDOG_ACCESS_TOKEN": "your-token",
"APIDOG_PROJECT_ID": "your-project-id",
"APIDOG_BRANCH_ID": "your-branch-id"
}
}
}
}
| Tool | Description |
|---|---|
list_environments | List all environments with base URLs |
list_api_endpoints | List API endpoint tree (filterable by module and name) |
list_test_case_categories | List test case categories |
list_test_case_tags | List available tags |
list_runners | List self-hosted test runners |
get_endpoint_statistics | Get test coverage statistics |
| Tool | Description |
|---|---|
list_test_cases | List all test cases (filterable by endpoint) |
get_test_case | Get full test case details |
create_test_case | Create a test case for an endpoint |
create_test_cases_bulk | Create multiple test cases at once |
update_test_case | Update a test case (GET-then-merge) |
delete_test_case | Delete a test case |
| Tool | Description |
|---|