Skip to main content
Glama
mrchris2000

MCP DevOps Test Server

by mrchris2000

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
TEST_SERVER_URLYesURL to your Test server instance
TEST_ACCESS_TOKENYesBase64 encoded personal access token for authentication
TEST_INSECURE_TLSNoDisable TLS certificate validation for self-signed or untrusted server certificatesfalse
TEST_TEAMSPACE_IDYesYour Test teamspace identifier

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_projectsA

Retrieves all projects from the Test system

list_testsB

Retrieves tests from a specific project with optional test type filtering

execute_testA

Execute a test in a specific project by test name. TIMING: Tests typically take 60-180 seconds to complete. AGENT BEHAVIOR: After execution, inform user 'Test started, will complete in ~2 minutes', then wait at least 60 seconds before first status check. Use progressive back-off for subsequent checks: 30s → 45s → 60s → 90s intervals until completion.

get_test_resultsA

Get comprehensive test execution results and report data. PROGRESSIVE POLLING: If status is RUNNING, wait using progressive back-off: 30s → 45s → 60s → 90s between checks. Tests typically complete in 60-180 seconds.

prepare_test_downloadC

Prepare test result download and extract download ID from location header

get_test_log_resultsC

Download and analyze test log results from the zip archive

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 6 tools

Disambiguation4/5

Most tools have clearly distinct purposes: projects, tests, execution, results, logs, and download preparation. The only potential confusion is between get_test_results and get_test_log_results, but their descriptions differentiate comprehensive report data from log archive analysis.

Naming Consistency4/5

Tool names follow a consistent verb_noun pattern (get_, list_, execute_, prepare_) and all use snake_case. Minor inconsistency exists between get_ and list_ for retrieval operations, but this is a common and acceptable variation.

Tool Count5/5

With 6 tools, the server is well-scoped for a DevOps test management workflow: project discovery, test listing, execution, result retrieval, log retrieval, and download preparation. Each tool serves a distinct step without unnecessary redundancy.

Completeness4/5

The tool set covers the core lifecycle of test execution: discover projects, list tests, execute tests, retrieve results, and download logs. Minor gaps exist (e.g., no explicit test detail view, no cancellation mechanism), but agents can accomplish primary workflows without dead ends.

Maintenance

ActivityInactive
ResponsivenessNo issues