mcp-xray
Enables interaction with Xray Cloud and Data Center for test management, including authentication, GraphQL queries, test execution/plan management, and result import via MCP.
README
mcp-xray
Servidor MCP para interactuar con Xray Cloud y Xray Data Center usando TypeScript 5.
Instalación
# Instalar dependencias
npm install
# Compilar el proyecto
npm run build
Uso
Una vez compilado, ejecuta el servidor MCP:
node dist/index.js
El servidor se comunica mediante stdio (stdin/stdout) siguiendo el protocolo MCP, por lo que requiere ser invocado por un cliente MCP compatible.
Funcionalidades iniciales
- Soporte para despliegues
cloudydatacenter - Autenticacion Xray Cloud mediante
client_idyclient_secret - Autenticacion Jira para operaciones sobre Test Executions y Test Plans
- Tool MCP para validar conectividad con Xray/Jira
- Tool MCP para ejecutar consultas GraphQL en Xray Cloud
- Tool MCP para importar resultados de ejecucion a Xray
- Tools MCP para buscar, consultar y crear Test Executions
- Tools MCP para buscar, consultar y crear Test Plans
- Arquitectura modular orientada a testabilidad
- Suite de tests con cobertura automatizada
Variables de entorno
Cloud
XRAY_DEPLOYMENT=cloud
XRAY_CLIENT_ID=your-client-id
XRAY_CLIENT_SECRET=your-client-secret
XRAY_BASE_URL=https://xray.cloud.getxray.app
XRAY_TOKEN_TTL_SECONDS=3000
JIRA_BASE_URL=https://your-domain.atlassian.net
JIRA_EMAIL=you@example.com
JIRA_API_TOKEN=your-jira-api-token
Data Center
XRAY_DEPLOYMENT=datacenter
JIRA_BASE_URL=https://jira.example.com
JIRA_PAT=your-personal-access-token
# Alternativa:
# JIRA_USERNAME=your-user
# JIRA_PASSWORD=your-password
XRAY_BASE_URL=https://jira.example.com
XRAY_TOKEN_TTL_SECONDS=3000
Integración con VSCode
Para usar este servidor MCP en VSCode con GitHub Copilot, agrega la siguiente configuración a tu archivo de settings MCP:
Windows/Linux: %APPDATA%\Code\User\globalStorage\github.copilot-chat\mcp.json
macOS: ~/Library/Application Support/Code/User/globalStorage/github.copilot-chat/mcp.json
{
"mcpServers": {
"xray": {
"command": "node",
"args": [
"/ruta/absoluta/a/mcp-xray/dist/index.js"
],
"env": {
"XRAY_DEPLOYMENT": "cloud",
"XRAY_CLIENT_ID": "tu-client-id",
"XRAY_CLIENT_SECRET": "tu-client-secret",
"XRAY_BASE_URL": "https://xray.cloud.getxray.app",
"XRAY_TOKEN_TTL_SECONDS": "3000",
"JIRA_BASE_URL": "https://tu-dominio.atlassian.net",
"JIRA_EMAIL": "tu@email.com",
"JIRA_API_TOKEN": "tu-jira-api-token"
}
}
}
}
Ajusta las variables de entorno según tu tipo de despliegue (cloud o datacenter). Una vez configurado, reinicia VSCode y el servidor MCP estará disponible para GitHub Copilot.
Scripts
npm run dev
npm run build
npm test
Notas
xray_graphqlesta pensado para Cloud.- Las operaciones sobre Test Executions y Test Plans se apoyan en Jira REST porque estas entidades viven como issues en Jira/Xray.
- Para Data Center, la importacion usa la ruta clasica de Xray Server/Data Center bajo
/rest/raven/1.0.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.