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
/** @type {import('jest').Config} */
const base = require('./jest.config.js');
module.exports = {
...base,
// Ignore integration and e2e tests in CI unit run
testPathIgnorePatterns: [
...(base.testPathIgnorePatterns || []),
'/tests/e2e/',
'/tests/integration/',
],
// Disable coverage thresholds per-shard; thresholds are validated via overall reporting (Codecov)
coverageThreshold: undefined,
};