Sáltate la instalación. Funcionando en menos de 2 minutos.
Inicia una prueba gratuita en cloud.anythingmcp.com, añade YouTrack con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.
Summary
JetBrains YouTrack: issues with YouTrack's query language, their comments and work items, projects, agile boards, sprints and users. REST API, permanent-token auth against YouTrack Cloud or a self-hosted server.
Prueba a pedir
Prompts de ejemplo para YouTrack
Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.
Claude es IA y puede equivocarse. Verifica siempre las respuestas.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → YouTrack, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
YouTrack + Cursor
JetBrains YouTrack: issues with YouTrack's query language, their comments and work items, projects, agile boards, sprints and users. REST API, permanent-token auth against YouTrack Cloud or a self-hosted server.
Requisitos previos
Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:
YOUTRACK_URL, YOUTRACK_TOKEN
Paso 1 — Obtener credenciales
Getting a token
- In YouTrack open your profile → Account Security → Authentication → New token, give it the
YouTrackscope, and copy it. Permanent tokens begin withperm:. - Set
YOUTRACK_URLto your instance root. On YouTrack Cloud that ishttps://example.youtrack.cloud; on a self-hosted server it may include a context path such ashttps://yt.example.com/youtrack. No trailing slash. The adapter appends/api. - Set
YOUTRACK_TOKEN. It is sent asAuthorization: Bearer perm:….
…(continued in the in-app connector instructions)
Paso 2 — Instalar el adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Paso 3 — Añadir el conector en Cursor
Cursor lee servidores MCP desde ~/.cursor/mcp.json. Añade esta entrada:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Obtén tu MCP API key desde AnythingMCP → Perfil → MCP API Keys → Nueva Key.
- Guarda el archivo y reinicia Cursor.
- Abre Cursor → Configuración → MCP para verificar que
YouTrackaparece como "Connected". - Empieza a chatear — todas las herramientas de
YouTrackestán disponibles.
Herramientas disponibles
| Tool | What it does |
|---|---|
youtrack_get_me | Read the user the token belongs to, with their login, full name and e-mail |
youtrack_search_issues | Search issues with YouTrack's query language — the same grammar as the web UI's search box |
youtrack_get_issue | Read one issue in full: summary, description, reporter, dates, and its custom fields — where state, priority and assignee actually live |
youtrack_list_issue_comments | Read the comments on one issue in order, with their author, text and creation time |
youtrack_list_issue_work_items | Read the time logged against one issue: each entry's author, date, duration and work type — the effort behind a ticket |
youtrack_list_projects | List projects with their short name, full name, description and leader — the short name is what a query's project: clause needs |
youtrack_list_agile_boards | List the agile boards with their name, the projects they cover and their current sprint, for a board-level view of the work |
youtrack_list_sprint_issues | List the issues on one sprint of one agile board, with their state and assignee — the sprint contents an agent is usually asked about |
youtrack_list_users | List users with their login, full name and e-mail, to resolve who an issue is assigned to |
youtrack_add_comment | Post a comment on an issue |
FAQ
¿Cursor soporta servidores MCP personalizados en el plan free? Sí — MCP está disponible en Hobby, Pro y Business.
Siguientes pasos
¿Te ha sido útil esta guía?