We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Daghis/teamcity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
matrix-configuration.ts•1.55 kB
/* tslint:disable */
/* eslint-disable */
/**
* TeamCity REST API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2018.1 (current)
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { MatrixBuildFeatureDescriptor } from './matrix-build-feature-descriptor';
// May contain unused imports in some cases
// @ts-ignore
import type { MatrixDependencies } from './matrix-dependencies';
/**
* Stores unique matrix build settings. Matrix builds are virtual builds spawned by build configurations with the Matrix Build feature. This object is accessible via the `build.matrixConfiguration` field.
* @export
* @interface MatrixConfiguration
*/
export interface MatrixConfiguration {
/**
* This is the internal property and is not intended to be used.
* @type {boolean}
* @memberof MatrixConfiguration
*/
default?: boolean;
/**
*
* @type {MatrixBuildFeatureDescriptor}
* @memberof MatrixConfiguration
*/
parameters?: MatrixBuildFeatureDescriptor;
/**
* Returns *true* if the build feature is enabled; otherwise, *false*.
* @type {boolean}
* @memberof MatrixConfiguration
*/
enabled?: boolean;
/**
*
* @type {MatrixDependencies}
* @memberof MatrixConfiguration
*/
dependencies?: MatrixDependencies;
}